* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

.big-img {
  width: 100%;
  margin-bottom: -5px;
}

.small-img {
  display: none;
  width: 100%;
  margin-bottom: -5px;
}

.full-img {
  width: 100%;
  margin-bottom: -5px;
}

@media (max-width: 768px) {
  .big-img {
    display: none;
  }

  .small-img {
    display: block;
  }
}

.primary-heading {
  font-size: 3rem;
  font-weight: 700;
}

.secondary-heading {
  font-size: 2rem;
  font-weight: 600;
}

.tertiary-heading {
  font-size: 1.5rem;
  font-weight: 600;
}

.basic-text {
  font-size: 1.2rem;
}

.add-relative {
  position: relative;
}

.add-orange {
  background: #ff4c13 linear-gradient(270deg, #0003 20%, #0000);
  background-clip: text;
  color: transparent;
}

.make-black {
  color: black !important;
}

.add-redline {
  border-bottom: 3px red solid;
  width: fit-content;
}

.add-red {
  color: #fe3434;
}

.add-bold {
  font-weight: 700;
}

.hero-text {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  padding: 3rem 0;
  margin: 0 auto;
  text-align: center;
  width: 80%;
}

.hero-text2 {
  width: 50%;
  margin: 0 auto;
  padding: 3rem 0;
}

@media (max-width: 768px) {
  .hero-text2 {
    width: 80%;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 80%;
  margin: 0 auto;
  gap: 1rem;
  padding-bottom: 1rem;
}

.hero-grid2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 80%;
  margin: 0 auto;
  gap: 1rem;
  padding-bottom: 10rem;
}

.grid-make {
  grid-area: 2 / 1 / 4 / 2;
}

.grid-make img {
  height: 100%;
  object-fit: cover;
}

.hero-grid-cell {
  position: relative;
}

.hero-grid-text {
  position: absolute;
  top: 1vw;
  left: 1vw;
  color: white;
  width: 70%;
}

@media (max-width: 992px) {
  .hero-grid2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-grid,
  .hero-grid2 {
    grid-template-columns: 1fr;
  }

  .grid-make {
    grid-area: auto;
  }

  .hero-grid-text {
    top: 3vw;
    left: 3vw;
  }
}

.info-cell1 {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 3rem;
}

.info-text1 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 70%;
}

@media (max-width: 768px) {
  .info-text1 {
    width: 100%;
  }
}

.info-cell2 {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: center;
  padding-bottom: 3rem;
}

.info-cell2 video,
.info-cell2 img {
  grid-area: 2 / 1 / 3 / -1;
}

@media (max-width: 768px) {
  .info-cell2 {
    grid-template-columns: 1fr;
  }

  .info-cell2 video,
  .info-cell2 img {
    grid-area: 2 / 1 / 3 / 2;
  }
}

.design {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 3rem;
  background-color: #f5f5f7;
  align-items: center;
  gap: 2rem;
  padding-bottom: 0.3rem;
}

.design-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 90%;
}

@media (max-width: 992px) {
  .design {
    grid-template-columns: 1fr;
  }

  .design-text {
    margin: 0 auto;
    padding-bottom: 2rem;
  }
}

.custom-grid {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
}

.custom-cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.custom-cell .add-bold {
  padding-top: 1rem;
}

@media (max-width: 768px) {
  .custom-grid {
    grid-template-columns: 1fr;
  }
}

.marvel-text {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0;
}

.marvel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 50%;
  margin: 0 auto;
  padding: 3rem 0 1re;
  gap: 1rem;
}

.marvel1 {
  background-color: #ff5630;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .marvel-grid {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .marvel-grid {
    grid-template-columns: 1fr;
  }

  .marvel1 {
    padding: 3rem 0;
  }
}

.next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 90%;
  margin: 0 auto;
  margin-bottom: 3rem;
  background-color: #f5f5f7;
  padding: 3rem;
  gap: 2rem;
}

.next-cell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.next-cell .add-bold {
  border-top: 1px solid red;
  padding-top: 1rem;
}

@media (max-width: 768px) {
  .next-grid {
    grid-template-columns: 1fr;
  }
}

.power-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: black;
  color: white;
  align-items: center;
  padding-bottom: 0.3rem;
  gap: 2rem;
  padding-left: 2rem;
  margin-bottom: 3rem;
}

.power-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 992px) {
  .power-grid {
    grid-template-columns: 1fr;
  }

  .power-text {
    padding: 2rem 0;
  }
}

.clean-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 90%;
  margin: 0 auto;
  gap: 1rem;
  margin-bottom: 3rem;
}

.clean-cell {
  border-top: 1px solid red;
  height: 100%;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 992px) {
  .clean-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .clean-grid {
    grid-template-columns: 1fr;
  }
}

.vids {
  padding: 7rem 0 2rem;
}

.hands-free-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 80%;
  margin: 0 auto;
  padding: 5rem 0;
  text-align: center;
}

.hands-free-grid {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  padding-bottom: 5rem;
  border-top: 1px solid red;
  padding-top: 2rem;
}

.hands-free-cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hands-free-cell svg {
  width: 5vw;
}

@media (max-width: 992px) {
  .hands-free-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hands-free-cell svg {
    width: 15vw;
  }
}

.mop-removal {
  background-color: #c4c4cb;
  margin-bottom: 5rem;
}

.mop-removal-text {
  position: absolute;
  height: fit-content;
  top: 0;
  bottom: 0;
  left: 3vw;
  width: 40%;
  margin: auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 768px) {
  .mop-removal-text {
    width: 80%;
    margin: 0 auto;
    left: 0;
    padding-bottom: 2rem;
    position: relative;
  }
}

.inside-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 90%;
  margin: 0 auto;
  gap: 1rem;
  margin-bottom: 5rem;
}

.inside-text {
  position: absolute;
  top: 2vw;
  left: 0;
  right: 0;
  width: 90%;
  margin: 0 auto;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .inside-grid {
    grid-template-columns: 1fr;
  }
}

.inteli-text {
  width: 80%;
  margin: 15rem auto 5rem;
  text-align: center;
}

.voice-assistant {
  background-color: black;
  color: white;
}

.voice-text1 {
  width: 90%;
  margin: 0 auto;
  padding: 3rem 0 2rem;
}

.voice-text2 {
  width: 50%;
  margin-left: 3vw;
  padding: 2rem 0;
}

.voice-assistant video {
  width: 70%;
  margin: 0 auto;
  display: block;
}

.app-text {
  width: 90%;
  margin: 0 auto;
  padding: 2rem 0;
  text-align: center;
}

.tap-img {
  width: 40%;
  margin: 0 auto;
  display: block;
}

@media (max-width: 768px) {
  .tap-img {
    width: 80%;
  }
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 90%;
  margin: 0 auto;
  margin-top: 5rem;
  box-shadow: 0 10px 10px 5px rgba(0, 0, 0, 0.158);
  padding-bottom: 0.3rem;
}

.app-grid-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 80%;
  margin: 0 auto;
  justify-content: center;
}

.aaaaaaaa {
  margin-bottom: 5rem;
}

@media (max-width: 992px) {
  .app-grid {
    grid-template-columns: 1fr;
  }

  .app-grid-text {
    padding: 2rem 0;
  }
}

.paw-text {
  width: 80%;
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.paw-grid {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.paw-cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (max-width: 992px) {
  .paw-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .paw-grid {
    grid-template-columns: 1fr;
  }
}

/* Carousel */

.vs-carousel {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  border-radius: 1rem;
  width: 90%;
  padding: 2rem 0 3rem;
  margin: 0 auto;
}

.vs-carousel video,
.vs-carousel img {
  border-radius: 12px;
}

.vs-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.vs-carousel-slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.vs-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #00000080;
  color: white;
  border: none;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.vs-carousel-btn.prev {
  left: 1rem;
}

.vs-carousel-btn.next {
  right: 1rem;
}

.vs-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.vs-carousel-dots button {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
}

.vs-carousel-dots button.active {
  background: #333;
}

.carousel-hero {
  width: 80%;
  padding: 3rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .vs-carousel-btn {
    display: none;
  }

  .vs-carousel {
    width: 90%;
    margin: 0 auto;
  }
}
