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

html {
  font-size: 62.5%;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

section {
  position: relative;
}

img,
video {
  display: block;
}

.full-img {
  width: 100%;
}

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

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

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

.hero-video {
  width: 100%;
}

.section-hero h1,
.hero-text {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-text {
  background-color: rgba(51, 51, 51, 0.76);
  padding: 2rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.349);
}

@media (max-width: 768px) {
  .hero-video {
    aspect-ratio: 1/1;
    object-fit: cover;
  }
}

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

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

.grid-2-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.green-text {
  color: rgb(188 207 17 / var(--tw-text-opacity, 1)) !important;
}

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

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

  .grid-2-move {
    grid-row: 3/4;
  }
}

.section-info,
.cleaning {
  background-color: black;
  color: white;
}

.info-text {
  width: 80%;
  margin: 0 auto;
  padding: 10rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cleaning-cont {
  width: 90%;
  margin: 0 auto;
  padding: 10rem 0;
}

.cleaning-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 3rem;
  align-items: end;
  padding-bottom: 3rem;
}

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

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 5rem;
}

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