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

html {
  font-size: 62.5%;
  font-family: sans-serif;
}
@media only screen and (max-width: 43.75em) {
  html {
    font-size: 50%;
  }
}

.primary-heading {
  font-size: 4.6rem;
  font-weight: 600;
}

.secondary-heading {
  font-size: 2.4rem;
  font-weight: 600;
}

.tertiary-heading {
  font-size: 2rem;
}

.basic-text {
  font-size: 1.5rem;
  line-height: 1.5;
}

.hero {
  position: relative;
}
.hero__img > * {
  width: 100%;
  display: block;
}
.hero__text {
  position: absolute;
  top: 30%;
  transform: translate(0, -50%);
  left: 5rem;
  color: #fff;
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 37.5em) {
  .hero__text {
    top: 5rem;
    left: 50%;
    transform: translate(-50%, 0);
    width: 80%;
    text-align: center;
  }
}

.impact {
  background-color: #000;
  color: #fff;
}
.impact .fasdfsfds {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  padding: 10rem 0;
}
.impact video,
.impact img {
  width: 100%;
  display: block;
}
@media (max-width: 37.5em) {
  .impact video,
  .impact img {
    aspect-ratio: 1/1;
    object-fit: cover;
  }
}
.impact__container {
  position: relative;
}
.impact__container-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  text-shadow: 0 0 1rem #000;
}
@media (max-width: 37.5em) {
  .impact__container-text {
    width: 80%;
  }
}

iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
}

.specs {
  background-color: #000;
  padding: 10rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.specs img {
  width: 100%;
  display: block;
}
@media (max-width: 37.5em) {
  .specs__container-1 img {
    aspect-ratio: 7/5;
    object-fit: cover;
  }
}
.specs__container-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 56.25em) {
  .specs__container-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 37.5em) {
  .specs__container-2 {
    grid-template-columns: 1fr;
  }
}
.specs__container-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 37.5em) {
  .specs__container-3 {
    grid-template-columns: 1fr;
  }
}
.specs__cell {
  position: relative;
  color: #fff;
}
.specs__cell p:first-child {
  font-weight: 600;
}
.specs__cell-text {
  position: absolute;
  top: 2rem;
  left: 2rem;
}

.how {
  background-color: #000;
  color: #fff;
}
.how .basic-text {
  font-size: 2rem;
}
.how h2 {
  width: 80%;
  margin: 0 auto;
  padding: 10rem 0 5rem;
}
.how__container {
  width: 100%;
  margin: 0 auto;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.how__container-text {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 5rem;
  width: 30%;
}
.how__container-text-num {
  display: inline-block;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.how__container img {
  width: 100%;
}

.steps {
  background-color: #000;
  color: #fff;
}
.steps__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 80%;
  margin: 0 auto;
  padding: 10rem 0;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 50em) {
  .steps__grid {
    grid-template-columns: 1fr;
  }
}
.steps__grid-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.steps__grid-text-cell {
  display: grid;
  grid-template-columns: 1fr 10fr;
  align-items: center;
  gap: 1rem;
}
.steps__grid-text-cell img {
  width: 100%;
}
.steps__grid-text .tertiary-heading {
  background: linear-gradient(90deg, #c5b4aa, #755b3c);
  background-clip: border-box;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 600;
}
.steps__grid img,
.steps__grid video {
  display: block;
  width: 100%;
}

.fluffy {
  background-color: #000;
  color: #fff;
  padding-bottom: 5rem;
}
.fluffy__text {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 50em) {
  .fluffy__text {
    grid-template-columns: 1fr;
  }
}
.fluffy video,
.fluffy img {
  display: block;
  width: 80%;
  margin: 0 auto;
}

.smart {
  background-color: #000;
  color: #fff;
  padding: 5rem 0;
}
.smart h3 {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  margin: 3rem auto;
}
.smart video {
  width: 80%;
  display: block;
  margin: 0 auto;
}
.smart__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 80%;
  margin: 0 auto;
  gap: 2rem;
}
@media (max-width: 50em) {
  .smart__grid {
    grid-template-columns: 1fr;
  }
}
.smart__grid-cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.smart__grid-cell img {
  width: 100%;
}

.hot {
  background-color: #000;
  color: #fff;
  padding: 5rem 0;
}
.hot__text {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.hot img,
.hot video {
  width: 80%;
  display: block;
  margin: 0 auto;
}

.versa {
  background-color: #000;
  color: #fff;
  padding: 5rem 0;
}
.versa h2,
.versa p {
  width: 80%;
  margin: 0 auto 0.5rem;
}
.versa img,
.versa video {
  width: 80%;
  display: block;
  margin: 0 auto;
  padding: 2rem 0;
}

.pa {
  position: relative;
}
.pa__text {
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translate(-50%, 0);
  color: #fff;
  text-align: center;
  width: 80%;
}

@media (max-width: 37.5em) {
  .add-top {
    padding-top: 10rem;
    background-color: #000;
  }
}

.bag {
  background-color: #000;
  color: #fff;
}
.bag__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 95%;
  margin: 0 auto;
  padding: 5rem;
  gap: 2rem;
}
@media (max-width: 62.5em) {
  .bag__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 43.75em) {
  .bag__container {
    grid-template-columns: 1fr;
  }
}
.bag__container-cell {
  position: relative;
}
.bag__container-cell-text {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.bag__container-cell-text .gfdhf {
  background: linear-gradient(to right, #c5b4aa, #755b3c);
  background-clip: border-box;
  width: fit-content;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 600;
}
.bag__container-cell img {
  width: 100%;
}

.add-white-bg {
  background-color: #fff;
  color: #000;
  padding-top: 5rem;
}

.suction {
  padding: 5rem 0;
}
.suction img {
  width: 80%;
  margin: 0 auto;
  display: block;
}
.suction__text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  width: 80%;
  margin: 3rem auto;
}
.suction__text .secondary-heading {
  color: #9e8972;
}

.triple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 80%;
  margin: 5rem auto;
  gap: 2rem;
}
@media (max-width: 56.25em) {
  .triple {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 31.25em) {
  .triple {
    grid-template-columns: 1fr;
  }
}
.triple__cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.triple__cell p:nth-child(2) {
  font-weight: 600;
  font-size: 1.6rem;
}
.triple__cell img {
  width: 100%;
}

/*# sourceMappingURL=Index.css.map */
