html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 62.5%;
}

@media (max-width: 324px) {
  html {
    font-size: 40%;
  }
}

body {
  background-color: black;
}

.heading-primary {
  font-size: 3.8rem;
  font-weight: 700;
}

.heading-secondary {
  font-size: 2.4rem;
  font-weight: 700;
}

.heading-tertiary {
  font-size: 1.8rem;
}

.text-cont {
  font-size: 1.6rem;
}

.add-bold {
  font-weight: 700;
}

.add-orange {
  color: #ff6700;
}

.section-hero {
  color: white;
  position: relative;
}

.hero-image {
  width: 100%;
  margin-bottom: -5px;
}

.hero-text {
  position: absolute;
  width: 50%;
  bottom: 5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

.hero-text img {
  width: 100%;
  padding-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero-image {
    aspect-ratio: 3/4;
    object-fit: cover;
  }

  .hero-text {
    width: 80%;
  }
}

.section-specs {
  background-color: black;
  padding: 5rem 0;
  color: white;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 80%;
  margin: 0 auto;
  gap: 2rem;
}

.specs-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
}

.specs-cell:first-child {
  grid-area: 1 / 1 / 2 / 3;
}

.specs-cell:nth-child(2) {
  grid-area: 2 / 1 / 4 / 2;
}

.specs-cell {
  position: relative;
}

.specs-text {
  position: absolute;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.specs-cell:first-child .specs-text,
.specs-cell:nth-child(3) .specs-text,
.specs-cell:nth-child(4) .specs-text {
  position: absolute;
  top: 0;
  bottom: 0;
  height: fit-content;
  margin: auto 0;
  width: 50%;
  left: 5rem;
}

.specs-cell:nth-child(2) .specs-text {
  position: absolute;
  right: 0;
  left: 0;
  height: fit-content;
  margin: 0 auto;
  width: 80%;
  top: 5rem;
}

.specs-cell:nth-child(5) .specs-text,
.specs-cell:nth-child(6) .specs-text {
  position: absolute;
  right: 0;
  left: 0;
  height: fit-content;
  margin: 0 auto;
  width: 80%;
  top: 2rem;
}

@media (max-width: 768px) {
  .specs-grid {
    grid-template-columns: 1fr;
  }

  .specs-cell:first-child,
  .specs-cell:nth-child(2) {
    grid-area: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
  }
}

@media (max-width: 400px) {
  .specs-cell:first-child {
    aspect-ratio: 1;
  }
}

.section-improve {
  position: relative;
}

.improve-img {
  margin-bottom: -5px;
  width: 100%;
}

.improve-text {
  color: white;
  position: absolute;
  top: 5rem;
  left: 5rem;
  width: 80%;
}

@media (max-width: 768px) {
  .improve-img {
    aspect-ratio: 3/4;
    object-fit: cover;
  }
}

.section-pa {
  position: relative;
}

@media (max-width: 400px) {
  .improve-img {
    aspect-ratio: 2/4;
  }
}

.pa-video {
  width: 100%;
  margin-bottom: -5px;
}

.pa-text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 90%;
  margin: 0 auto;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
  position: absolute;
  height: fit-content;
}

.pa-cell h3 {
  font-size: 8rem;
}

.pa-cell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.pa-cell:first-child {
  border-right: 1px solid white;
  padding-right: 2rem;
}

@media (max-width: 768px) {
  .pa-text {
    grid-template-columns: 1fr;
  }

  .pa-video {
    aspect-ratio: 3/4;
    object-fit: cover;
  }

  .pa-cell:first-child {
    border-right: 0;
    padding-right: 0;
    border-bottom: 1px solid white;
    padding-bottom: 2rem;
  }
}

@media (max-width: 400px) {
  .pa-video {
    aspect-ratio: 2/4;
  }
}

.section-arm {
  background-color: black;
  color: white;
  padding: 5rem 0;
}

.arm-text {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.arm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 80%;
  margin: 0 auto;
  gap: 2rem;
  padding: 4rem 0;
}

.arm-video {
  width: 80%;
  margin: 0 auto;
  display: block;
  border-radius: 25px;
  padding-top: 5rem;
}

.arm-cell {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 1rem;
}

.arm-logo {
  width: 100%;
}

@media (max-width: 768px) {
  .arm-grid {
    grid-template-columns: 1fr;
  }

  .arm-cell {
    grid-template-columns: 1fr 13fr;
  }
}

.section-all {
  position: relative;
}

.all-video {
  width: 100%;
}

.all-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 70%;
  height: fit-content;
  margin: auto;
  color: white;
}

@media (max-width: 768px) {
  .all-video {
    aspect-ratio: 3/4;
    object-fit: cover;
  }
}

@media (max-width: 400px) {
  .all-video {
    aspect-ratio: 2/4;
  }
}

.auto-grid {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  color: white;
  padding: 5rem 0;
  gap: 2rem;
}

.auto-video {
  width: 100%;
}

.auto-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 768px) {
  .auto-grid {
    grid-template-columns: 1fr;
  }

  .move-auto-one {
    grid-area: 4 / 1 / 5 / 2;
  }

  .move-auto-two {
    grid-area: 8 / 1 / 9 / 2;
  }
}

.system-img {
  width: 80%;
  margin: 0 auto;
  display: block;
  padding-bottom: 5rem;
}

.system-text {
  width: 80%;
  margin: 0 auto;
  color: white;
  padding: 5rem;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 80%;
  margin: 0 auto;
  gap: 2rem;
  color: white;
}

.sc-img {
  width: 100%;
  padding-bottom: 1rem;
}

.sc-logo {
  width: 100%;
}

.sc-tect {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  .system-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .sc-tect {
    grid-template-columns: 1fr 8fr;
  }
}

.section-carpet {
  position: relative;
  color: white;
  margin-top: 5rem;
}

.carpet-img {
  width: 100%;
}

.carpet-text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 80%;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 5vw;
}

@media (max-width: 768px) {
  .carpet-img {
    aspect-ratio: 3/4;
    object-fit: cover;
  }

  .carpet-text {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .carpet-img {
    aspect-ratio: 2/4;
  }
}

.section-laser {
  padding-bottom: 5rem;
}

.laser-text {
  color: white;
  width: 80%;
  margin: 0 auto;
  padding: 5rem 0;
}

.laser-cont {
  width: 80%;
  margin: 0 auto;
  position: relative;
}

.laser-img {
  width: 100%;
}

.laser-grid {
  color: white;
  display: grid;
  grid-template-columns: 1fr;
  width: 40%;
  gap: 2rem;
  position: absolute;
  height: fit-content;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 5rem;
}

.lc-img {
  width: 100%;
}

.laser-cell {
  display: grid;
  grid-template-columns: 1fr 6fr;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 768px) {
  .laser-grid {
    position: static;
    width: 100%;
    padding-top: 5rem;
  }
}

.section-four {
  padding-bottom: 5rem;
}

.four-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.four-grid {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.four-cell {
  position: relative;
}

.four-cell:first-child {
  grid-area: 1 / 2 / 2 / 3;
  height: 15vw;
  display: flex;
  align-items: center;
  color: white;
  width: 80%;
  margin: 0 auto;
}

.four-cell:nth-child(2) {
  grid-area: 1 / 1 / 3 / 2;
}

.four-cell:nth-child(3) {
  grid-area: 2 / 2 / 4 / 3;
}

.four-cell:nth-child(4) {
  grid-area: 3 / 1 / 5 / 2;
}

.four-cell:nth-child(5) {
  grid-area: 4 / 2 / 6 / 3;
}

.four-cell p {
  position: absolute;
  top: 5rem;
  left: 5rem;
}

@media (max-width: 768px) {
  .four-grid {
    grid-template-columns: 1fr;
  }

  .four-cell:first-child,
  .four-cell:nth-child(2),
  .four-cell:nth-child(3),
  .four-cell:nth-child(4),
  .four-cell:nth-child(5) {
    grid-area: auto;
  }
}

.section-mah {
  position: relative;
}

.mah-image {
  width: 100%;
}

.mah-text {
  color: white;
  position: absolute;
  right: 5rem;
  bottom: 5rem;
  width: 40%;
}

@media (max-width: 768px) {
  .mah-text {
    position: static;
    width: 80%;
    margin: 0 auto;
    padding: 5rem 0;
  }
}

.section-voice {
  width: 80%;
  margin: 0 auto;
  color: white;
}

.voice-img {
  width: 100%;
  padding: 3rem 0 5rem;
}

.section-remote {
  position: relative;
}

.remote-image {
  width: 100%;
}

.remote-text {
  width: 60%;
  left: 5rem;
  position: absolute;
  top: 5rem;
}

@media (max-width: 768px) {
  .remote-text {
    position: static;
    width: 80%;
    margin: 0 auto;
    padding: 5rem 0;
    color: white;
  }
}
