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

html {
  font-size: 62.5%;
}

@media (max-width: 576px) {
  html {
    font-size: 55%;
  }
}

body {
  font-family: sans-serif;
}

video,
img {
  display: block;
}

.full-img {
  width: 100%;
}

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

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

.tertiary-heading {
  font-size: 2.8rem;
  font-weight: 400;
}

.basic-text {
  font-size: 2rem;
}

.section-hero {
  width: 80%;
  margin: 10rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  color: #333;
}

.hero-video {
  width: 50%;
  margin: 5rem 0;
}

.hero-grid {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.hero-cell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-logo {
  height: 7rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero-video {
    width: 100%;
  }

  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 80%;
  }

  .hero-logo {
    height: 8rem;
  }
}

@media (max-width: 576px) {
  .hero-grid {
    width: 100%;
  }
}

.section-suction {
  background-color: black;
  color: white;
}

.green {
  color: #c0df16 !important;
}

.suction-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 80%;
  margin: 0 auto;
  padding: 10rem 0;
  gap: 5rem;
  align-items: center;
}

.suction-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.suction-image {
  position: relative;
}

.types {
  position: relative;
}

.types-text {
  color: white;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  text-shadow: 0 0.5rem 2rem black;
}

@media (max-width: 768px) {
  .types-vid {
    aspect-ratio: 3/4;
    object-fit: cover;
  }
}

.section-handle {
  background-color: #eee;
}

.handle-grid {
  display: grid;
  grid-template-columns: 2fr 1.3fr;
  width: 80%;
  margin: 0 auto;
  padding: 10rem 0;
  align-items: center;
  gap: 10rem;
}

.hande-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #333;
}

@media (max-width: 768px) {
  .handle-grid {
    grid-template-columns: 1fr;
  }
}

.section-svg {
  padding-bottom: 10rem;
}

.svg-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 80%;
  margin: 10rem auto -5rem;
  text-align: center;
}

.section-grid {
  background-color: black;
  color: #eee;
}

.grid-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 90%;
  margin: 0 auto;
  gap: 3rem;
  align-items: center;
  padding: 10rem 0;
}

.grid-1 img,
.grid-1 video {
  border-radius: 13px;
}

.grid-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 768px) {
  .grid-1,
  .suction-grid {
    grid-template-columns: 1fr;
  }
}

.cleaning {
  background-color: #eee;
}

.cleaning-text {
  width: 50%;
  padding-top: 10rem;
  margin: 0 auto 10rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cleaning-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 80%;
  margin: 0 auto;
  gap: 3rem;
  padding-bottom: 10rem;
}

.asd {
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .cleaning-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .cleaning-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .cleaning-grid {
    grid-template-columns: 1fr;
  }
}
