* {
  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.8rem;
  font-weight: 600;
}

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

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

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

.specs__top {
  width: 80%;
  margin: 5rem auto;
  text-align: center;
  background: linear-gradient(93.24deg, #ead7be 3.68%, #4a3822 97.68%);
  background-clip: border-box;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1.6;
}
.specs__top b {
  background: linear-gradient(90deg, #ae7d56, #d2b69c);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 1000px;
}
.specs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 30rem 30rem 20rem 20rem;
  width: 90%;
  margin: 0 auto 5rem;
  gap: 2rem;
}
@media (max-width: 50em) {
  .specs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 31.25em) {
  .specs__grid {
    grid-template-columns: 1fr;
  }
}
.specs__grid-cell {
  position: relative;
}
@media (max-width: 50em) {
  .specs__grid-cell {
    grid-row: auto !important;
    grid-column: auto !important;
  }
}
.specs__grid-cell p {
  position: absolute;
  top: 3rem;
  left: 3rem;
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
}
.specs__grid-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.specs__grid-cell:first-child {
  grid-row: 1/2;
  grid-column: 1/3;
}
.specs__grid-cell:nth-child(3) {
  grid-row: 2/3;
  grid-column: 1/3;
}
.specs__grid-cell:nth-child(5) {
  grid-row: 3/5;
}
.specs__grid-cell:nth-child(8) {
  grid-row: 3/5;
  grid-column: 3/4;
}

.multiple__heading {
  background: linear-gradient(93.24deg, #ead7be 3.68%, #4a3822 97.68%);
  background-clip: border-box;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  width: 80%;
  text-align: center;
  margin: 15rem auto 5rem;
}

.pa {
  position: relative;
  background-color: #000;
}
.pa__text {
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  width: 80%;
  text-align: center;
}
@media (max-width: 57.1875em) {
  .pa__text {
    position: relative;
    top: auto;
    left: auto;
    transform: translateX(0);
    margin: 0 auto;
    padding-top: 3rem;
  }
}
.pa img {
  width: 100%;
  display: block;
}
@media (max-width: 43.75em) {
  .pa img {
    aspect-ratio: 4/3;
    object-fit: cover;
  }
}

.graph {
  background-color: black;
  display: grid;
  grid-template-columns: 80% 20%;
  padding: 5rem;
  color: #fff;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 56.25em) {
  .graph {
    grid-template-columns: 1fr;
  }
}
.graph img {
  width: 100%;
}
.graph__text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.graph__text p:nth-child(odd) {
  color: #c2a983;
}

.tangle video {
  width: 90%;
  margin: 0 auto 5rem;
  display: block;
  border-radius: 20px;
}
.tangle__text {
  width: 80%;
  margin: 15rem auto 5rem;
  text-align: center;
}
.tangle__text .tertiary-heading {
  color: #c2a983;
  font-weight: 100;
}

.carpets__top {
  width: 90%;
  margin: 15rem auto 5rem;
}
.carpets__top .tertiary-heading {
  font-size: 2.8rem;
}
.carpets__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 90%;
  margin: 0 auto 5rem;
  gap: 3rem;
}
@media (max-width: 50em) {
  .carpets__grid {
    grid-template-columns: 1fr;
  }
}
.carpets__cell {
  margin: 0 auto;
}
.carpets__cell img {
  width: 100%;
}

.corner {
  background-color: #000;
  color: #fff;
  position: relative;
}
.corner__text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5rem;
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 50em) {
  .corner__text {
    position: relative;
    top: auto;
    transform: translateY(0);
    left: auto;
    width: 80%;
    margin: 0 auto;
    padding-top: 3rem;
  }
}
.corner img {
  width: 100%;
}
@media (max-width: 50em) {
  .corner img {
    aspect-ratio: 3/3;
    object-fit: cover;
    object-position: right;
  }
}

.wet__text {
  width: 80%;
  margin: 15rem auto 3rem;
  text-align: center;
}
.wet__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 80%;
  margin: 0 auto 5rem;
}
@media (max-width: 50em) {
  .wet__grid {
    grid-template-columns: 1fr;
  }
}
.wet__grid-cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.wet__grid-cell img {
  width: 100%;
}

.leap {
  position: relative;
}
.leap__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 60%;
  text-shadow: 0 0 1rem #000;
}
.leap video {
  width: 100%;
  display: block;
}
@media (max-width: 50em) {
  .leap video {
    aspect-ratio: 1/1;
    object-fit: cover;
  }
}

.in {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  width: 80%;
  margin: 5rem auto;
  align-items: end;
}
@media (max-width: 50em) {
  .in {
    grid-template-columns: 1fr;
  }
}
.in__cell img {
  margin-top: 1rem;
  width: 100%;
}

.asfafsa {
  width: 100%;
  display: block;
}

.maint {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 90%;
  margin: 5rem auto;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 50em) {
  .maint {
    grid-template-columns: 1fr;
  }
}
.maint__text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.maint__text .tertiary-heading {
  color: #9e8972;
}
.maint img {
  width: 100%;
}

.intehr {
  width: 80%;
  margin: 0 auto 5rem;
}
.intehr__text {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0.5rem;
}
.intehr video,
.intehr img {
  margin-top: 3rem;
  border-radius: 20px;
  width: 100%;
  display: block;
}

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