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

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

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

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

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

.grid {
  background-color: #141414;
}
.grid__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 80%;
  margin: 0 auto;
  padding: 10rem 0;
  gap: 2rem;
}
@media (max-width: 50em) {
  .grid__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid__container-cell {
  position: relative;
}
.grid__container-cell:nth-child(1) {
  grid-column: 1/-1;
}
.grid__container-cell:nth-child(2) {
  grid-column: 1/3;
}
@media (max-width: 50em) {
  .grid__container-cell:nth-child(2) {
    grid-column: 1/-1;
  }
}
.grid__container-cell:nth-child(3) .grid__container-cell-text, .grid__container-cell:nth-child(4) .grid__container-cell-text {
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
}
.grid__container-cell:nth-child(5) {
  grid-column: 2/4;
}
@media (max-width: 50em) {
  .grid__container-cell:nth-child(5) {
    grid-column: 1/-1;
  }
}
.grid__container-cell:nth-child(5) .grid__container-cell-text {
  left: auto;
  right: 3rem;
  text-align: right;
}
@media (max-width: 31.25rem) {
  .grid__container-cell:nth-child(5) .grid__container-cell-text {
    width: 80%;
    text-align: center;
    transform: translate(50%, 0);
    top: 3rem;
    right: 50%;
  }
}
.grid__container-cell:nth-child(5) .grid__container-cell-text p {
  color: #fff;
}
.grid__container-cell img,
.grid__container-cell picture > * {
  width: 100%;
  display: block;
}
.grid__container-cell-text {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 40%;
  left: 3rem;
}
.grid__container-cell-text p:nth-child(1) {
  font-weight: 600;
  color: transparent;
  background: linear-gradient(#83622f, #ffe1bb) 0 0/150% 150% no-repeat;
  background-clip: text;
}

.left {
  position: relative;
}
.left__text {
  position: absolute;
  top: 50%;
  left: 5rem;
  transform: translate(0, -50%);
  color: #fff;
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.left__text p:nth-child(1) {
  font-weight: 600;
  color: transparent;
  background: linear-gradient(#83622f, #ffe1bb) 0 0/150% 150% no-repeat;
  background-clip: text;
}
@media (max-width: 50em) {
  .left__text {
    top: 5rem;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    width: 80%;
  }
}
.left__img > * {
  width: 100%;
  display: block;
}

.top {
  position: relative;
}
.top__text {
  position: absolute;
  left: 50%;
  width: 90%;
  transform: translate(-50%, 0);
  top: 5rem;
  color: #fff;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}
@media (max-width: 50em) {
  .top__text {
    top: 5rem;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    width: 80%;
    grid-template-columns: 1fr;
  }
}
.top__text div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.top__text div:nth-child(2) {
  font-weight: 600;
  color: transparent;
  background: linear-gradient(#83622f, #ffe1bb) 0 0/150% 150% no-repeat;
  background-clip: text;
  justify-content: center;
}
.top__text p:nth-child(1) {
  font-weight: 600;
  color: transparent;
  background: linear-gradient(#83622f, #ffe1bb) 0 0/150% 150% no-repeat;
  background-clip: text;
}
.top__img > * {
  width: 100%;
  display: block;
}

.bottom {
  position: relative;
}
.bottom__text {
  position: absolute;
  left: 50%;
  bottom: 7rem;
  transform: translate(-50%, 0);
  color: #fff;
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bottom__text p:nth-child(1) {
  font-weight: 600;
  color: transparent;
  background: linear-gradient(#83622f, #ffe1bb) 0 0/150% 150% no-repeat;
  background-clip: text;
}
.bottom__img > * {
  width: 100%;
  display: block;
}

.double {
  background-color: #000;
  color: #fff;
}
.double__text {
  width: 90%;
  margin: 0 auto;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.double__text p:nth-child(1) {
  font-weight: 600;
  color: transparent;
  background: linear-gradient(#83622f, #ffe1bb) 0 0/150% 150% no-repeat;
  background-clip: text;
}
.double__img > * {
  width: 100%;
  display: block;
}

.top2 {
  color: #fff;
  position: relative;
}
.top2__text {
  position: absolute;
  left: 50%;
  top: 3rem;
  transform: translate(-50%, 0);
  color: #fff;
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.top2__img > * {
  width: 100%;
  display: block;
}
.top2__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 90%;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%, 0);
}
@media (max-width: 50em) {
  .top2__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 31.25em) {
  .top2__grid {
    grid-template-columns: 1fr;
  }
}
.top2__grid-cell {
  position: relative;
}
.top2__grid-cell-text {
  position: absolute;
  display: flex;
  width: 80%;
  gap: 2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  align-items: center;
  z-index: 9999;
}
.top2__grid-cell-text img {
  width: 3rem !important;
  height: 3rem !important;
}
.top2__grid-cell img {
  width: 100%;
  display: block;
}
@media (max-width: 31.25em) {
  .top2__grid-cell img {
    aspect-ratio: 16/3;
  }
}

.another-one {
  background-color: #1e1e1e;
}
@media (max-width: 31.25em) {
  .another-one {
    padding-bottom: 30rem;
  }
}

.right {
  position: relative;
}
.right__text {
  position: absolute;
  top: 50%;
  right: 5rem;
  transform: translate(0, -50%);
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 50em) {
  .right__text {
    top: 5rem;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    width: 80%;
  }
}
.right__img > * {
  width: 100%;
  display: block;
}

.top3 {
  position: relative;
}
.top3__text {
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 80%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.mettalic {
  position: relative;
}
.mettalic__img > * {
  width: 100%;
  display: block;
}
.mettalic__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 70%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 3rem;
  gap: 2rem;
}
@media (max-width: 50em) {
  .mettalic__grid {
    grid-template-columns: 1fr;
    width: 90%;
  }
}
.mettalic__grid-cell {
  position: relative;
}
.mettalic__grid-cell p {
  font-weight: 600;
  color: #fff;
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}
.mettalic__grid-cell:nth-child(1) {
  grid-row: 1/3;
}
@media (max-width: 50em) {
  .mettalic__grid-cell:nth-child(1) {
    grid-row: auto;
  }
}
.mettalic__grid-cell-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mettalic__text {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  top: 13rem;
  left: 5rem;
  color: #fff;
  width: 40%;
}
@media (max-width: 50em) {
  .mettalic__text {
    top: 5rem;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    width: 80%;
  }
}
.mettalic__text p:nth-child(1) {
  font-weight: 600;
  color: transparent;
  background: linear-gradient(#83622f, #ffe1bb) 0 0/150% 150% no-repeat;
  background-clip: text;
}

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