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%;
}

.heading-primary {
  font-size: 3.2rem;
}

.heading-secondary {
  font-size: 2.4rem;
}

.heading-tertiary {
  font-size: 1.8rem;
}

.text-cont {
  font-size: 1.6rem;
}

.add-color-orange {
  color: #ff4c13;
}

.add-bold {
  font-weight: 700;
}

@media (min-width: 769px) {
  .small-img {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .big-img {
    display: none !important;
  }
}

.section-hero {
  background-color: black;
}

.hero-video {
  width: 100%;
  margin-bottom: -3px;
}

.section-hero iframe {
  margin: 0 auto;
  display: block;
  width: 80%;
  height: auto;
  aspect-ratio: 16/9;
}

.hero-text {
  text-align: center;
  padding: 10rem 0;
  width: 90%;
  margin: 0 auto;
}

.hero-text h1 {
  color: white;
  font-size: 8rem;
  font-weight: 700;
}

.hero-text h2 {
  color: #ff4c13;
  font-size: 4rem;
  font-weight: 700;
}

.section-hero p {
  color: white;
  width: 70%;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 0;
  font-size: 2rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-video {
    aspect-ratio: 3/4;
    object-fit: cover;
  }
}

.section-grid-specs {
  background-color: black;
  padding-bottom: 5rem;
}

.grid-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 80%;
  margin: 0 auto;
}

.spec-cell {
  position: relative;
}

.spec-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
}

.spec-cell:first-child {
  grid-area: 1 / 1 / 3 / 2;
}

.spec-text {
  position: absolute;
  top: 2vw;
  left: 2vw;
  color: white;
  width: 60%;
}

.spec-text h2 {
  padding-bottom: 2rem;
}

.text-cont {
  line-height: 2.2rem;
}

@media (max-width: 864px) {
  .grid-specs {
    grid-template-columns: repeat(1, 1fr);
  }

  .spec-cell:first-child {
    grid-area: auto;
  }

  .spec-text h2 {
    font-size: 3rem;
  }

  .spec-text p {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .spec-text {
    position: relative;
    z-index: 200;
    width: 100%;
  }

  .spec-cell img {
    width: 100%;
    height: auto;
  }
}

.section-list {
  background-color: black;
  color: white;
}

.list-text {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 5rem;
  position: relative;
}

.tuv-image {
  width: 20%;
  padding-top: 2rem;
}

.list-video {
  width: 100%;
  border-radius: 13px;
}

.list-float {
  background-color: white;
  color: black;
  width: fit-content;
  padding: 3rem;
  border-radius: 13px;
  position: absolute;
  bottom: 2vw;
  left: 2vw;
}

.list-text-inside {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 768px) {
  .list-float {
    position: static;
  }

  .list-text-inside {
    width: 100%;
  }
}

.list-grid {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 5rem 0;
  align-items: center;
}

.list-grid-video,
.list-grid-image {
  width: 100%;
  border-radius: 13px;
}

.list-grid-text1 {
  background-color: #f65928;
  border-radius: 13px;
  display: flex;
  flex-direction: column;
  color: black;
  justify-content: center;
  padding: 3rem;
  gap: 1rem;
}

.list-grid-text2 {
  border-radius: 13px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.list-grid2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .list-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .list-grid2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.list-grid3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 80%;
  margin: 0 auto;
  gap: 2rem;
}

.list-grid3-cell img {
  width: 40%;
  padding-bottom: 1rem;
}

.list-grid3-cell p {
  width: 80%;
  font-weight: 700;
}

@media (max-width: 800px) {
  .list-grid3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .list-grid3-cell img {
    width: 30%;
  }
}

@media (max-width: 400px) {
  .list-grid3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.section-grid-img {
  background-color: black;
  color: white;
}

.grid-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 80%;
  margin: 0 auto;
  gap: 2rem;
}

.grid-img-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.grid-img img,
.grid-img video {
  width: 100%;
}

@media (max-width: 768px) {
  .grid-img {
    grid-template-columns: 1fr;
  }
}

.section-rewash {
  background-color: black;
  color: white;
  padding-bottom: 5rem;
}

.section-rewash h2 {
  width: 80%;
  margin: 0 auto;
  padding: 5rem 0 3rem;
}

.re-wash-cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 80%;
  margin: 0 auto;
  gap: 2rem;
}

.re-wash-img {
  width: 100%;
  border-radius: 13px;
}

.re-wash-cell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 768px) {
  .re-wash-cont {
    grid-template-columns: 1fr;
  }
}

.section-auto {
  background-color: black;
  padding-bottom: 14vw;
}

.auto-cont {
  background-color: #cbcacf;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 2vw;
  width: 80%;
  margin: 0 auto;
  border-radius: 13px;
  padding: 4vw;
  position: relative;
  padding-bottom: 10vw;
}

.auto-cont img {
  width: 53vw;
  position: absolute;
  right: 1vw;
}

@media (max-width: 900px) {
  .auto-cont {
    grid-template-columns: 1fr;
  }

  .auto-cont img {
    position: static;
    width: 80%;
    margin: 0 auto;
  }

  .section-auto {
    padding-bottom: 5rem;
  }
}

/* Carousel */
.carousel-cont {
  background-color: black;
}
.carousel-video {
  width: 70%;
  margin: 0 auto;
  display: block;
}
.carousel-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 70%;
}
.carousel {
  position: relative;
  width: 80%;
  overflow: hidden;
  margin: 0 auto;
  color: white;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel-slide {
  min-width: 100%;
}
.carousel-slide img {
  width: 100%;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
}
.carousel-btn.left {
  left: 10px;
}
.carousel-btn.right {
  right: 10px;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}
.carousel-dot.active {
  background-color: #333;
}

/* Carousel */

.section-switch {
  background-color: black;
  color: white;
  padding: 5rem 0;
}

.switch-cont {
  width: 80%;
  margin: 0 auto;
  background-color: #eeeeee;
  color: black;
  padding: 5rem;
  border-radius: 13px;
  transition: all ease-in 0.3s;
}

@media (max-width: 768px) {
  .switch-cont {
    padding: 0;
  }

  .switch-cell:first-child {
    padding: 2rem !important;
  }

  .switch-cell:nth-child(2) {
    padding: 2rem !important;
  }
}

.switch-text {
  display: flex;
  gap: 2rem;
}

.switch-sun,
.switch-moon {
  filter: invert(1);
  width: 7%;
  cursor: pointer;
  background-color: #c5c5c5;
  padding: 1.5rem;
  border-radius: 100%;
  transition: all ease-in 0.2s;
}

.switch-sun:hover,
.switch-moon:hover {
  background-color: #7e7c7c;
}

.switch-images {
  display: flex;
  gap: 2rem;
  width: fit-content;
}

.switch-image {
  width: 100%;
  border-radius: 13px;
}

.switch-cell {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 2rem;
  width: 50%;
}

@media (max-width: 768px) {
  .switch-text {
    flex-direction: column;
  }

  .switch-cell {
    width: 80%;
  }
}

.section-double {
  background-color: black;
  color: white;
}

.double-cont {
  display: flex;
  margin: 0 auto;
  width: 80%;
  gap: 2rem;
  padding-bottom: 5rem;
}

.double-cell {
  background-color: #161616;
  border-radius: 13px;
}

.double-text {
  padding: 5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.double-cell img {
  height: 24vw;
  width: 100%;
  object-fit: cover;
  border-radius: 13px;
}

@media (max-width: 800px) {
  .double-cont {
    flex-direction: column;
  }
}

.section-spot {
  background-color: black;
  padding-bottom: 5rem;
}

.spot-cont {
  width: 80%;
  margin: 0 auto;
  display: flex;
  background-color: white;
  align-items: center;
  border-radius: 13px;
}

.spot-text {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.spot-text .heading-tertiary {
  cursor: pointer;
  transition: all 0.1s ease-in;
  width: fit-content;
}

.spot-text .heading-tertiary:hover {
  background-color: rgba(128, 128, 128, 0.548);
  padding: 1rem 2rem;
  border-radius: 13px;
}

.spot-active {
  background-color: rgba(128, 128, 128, 0.274);
  padding: 1rem 2rem;
  border-radius: 13px;
}

.spot-image {
  width: 55%;
  border-radius: 13px;
}

@media (max-width: 880px) {
  .spot-cont {
    flex-direction: column;
  }

  .spot-image {
    aspect-ratio: 16/8;
    object-fit: cover;
    width: 100%;
  }
}

.section-lidar {
  background-color: black;
  color: white;
  padding-bottom: 5rem;
}

.lidar-cont {
  display: flex;
  gap: 2rem;
  width: 80%;
  margin: 0 auto;
}

.lidar-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.lidar-image {
  width: 50%;
  border-radius: 13px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .lidar-cont {
    flex-direction: column;
  }

  .lidar-image {
    width: 100%;
  }
}

.section-helo {
  background-color: black;
  color: white;
}

.hello-video {
  width: 100%;
}

.hello-cont {
  width: 80%;
  margin: 0 auto;
}

.hello-text {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 5rem;
}

.hello-text h2 {
  padding-bottom: 5rem;
}

@media (max-width: 768px) {
  .hello-text {
    width: 100%;
  }
}

.section-caps {
  background-color: black;
  color: white;
  padding: 5rem 0;
}

.caps-cont {
  width: 80%;
  margin: 0 auto;
}

.caps-cont h2 {
  padding-bottom: 2rem;
}

.caps-cell {
  background: linear-gradient(132.52deg, #23230b 28.73%, #2e3c17 87.21%);
  padding: 2rem;
  border-radius: 13px;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.caps-img {
  width: 5vw;
}

.caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .caps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .caps-img {
    width: 10vw;
  }
}

@media (max-width: 400px) {
  .caps-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.section-app {
  background-color: black;
  color: white;
  padding-bottom: 5rem;
}

.app-cont {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.app-image {
  width: 10vw;
}

@media (max-width: 768px) {
  .app-image {
    width: 20vw;
  }
}

.section-needs {
  background-color: black;
  color: white;
  padding-bottom: 5rem;
}

.needs-cont {
  width: 80%;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  background-color: #161616;
  border-radius: 13px;
}

.needs-image {
  width: 50%;
  border-radius: 13px;
  object-fit: cover;
}

.text-needs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 5vw 3vw;
}

.text-needs p {
  margin-top: 5rem;
  padding-top: 1rem;
  border-top: 1px solid red;
}

.needs-heading {
  cursor: pointer;
}

.needs-heading.active-needs {
  font-weight: bold;
  opacity: 1;
}

.needs-heading:not(.active-needs) {
  opacity: 0.5;
  transition: opacity 0.3s;
}

@media (max-width: 768px) {
  .needs-cont {
    flex-direction: column;
  }

  .needs-image {
    width: 100%;
  }
}

.section-enjoy {
  background-color: black;
  color: white;
}

.enjoy-video {
  width: 100%;
  border-radius: 13px;
  display: block;
  margin-top: 3rem;
}

.enjoy-cont {
  width: 60%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 3rem;
}

.enjoy-sm-text {
  width: 50%;
}

@media (max-width: 768px) {
  .enjoy-cont {
    width: 80%;
  }

  .enjoy-sm-text {
    width: 80%;
  }
}

.section-pets {
  background-color: black;
  color: white;
  padding-bottom: 5rem;
}

.pets-cont {
  width: 80%;
  margin: 0 auto;
}

.pets-cont h2 {
  padding: 3rem 0;
}

.pets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
  gap: 2rem;
}

.pets-image {
  width: 100%;
  border-radius: 13px;
}

.pets-cell {
  background-color: #161616;
  border-radius: 13px;
}

.pets-text {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 768px) {
  .pets-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.section-privacy {
  background-color: black;
  color: white;
}

.privacy-cont {
  width: 80%;
  margin: 0 auto;
  display: grid;
}

.privacy-grid {
  display: grid;
  width: 100% !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-top: 3rem;
}

.privacy-image {
  width: 100%;
  border-radius: 13px;
}

@media (max-width: 650px) {
  .privacy-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 400px) {
  .heading-primary {
    font-size: 2.5rem;
  }
}
