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

html {
  font-size: 62.5%;
}

body {
  font-family: "Arial", sans-serif;
}

.full__img > *,
.full__img {
  width: 100%;
  display: block;
}

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

.secondary-heading {
  font-size: 3.2rem;
  font-family: 400;
  line-height: 1.3;
}

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

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

.hero {
  position: relative;
}
.hero__text {
  position: absolute;
  top: 50%;
  left: 8rem;
  transform: translate(0, -50%);
  color: #fff;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
@media (max-width: 50em) {
  .hero__text {
    left: 50%;
    top: 5rem;
    transform: translate(-50%, 0);
    width: 80%;
  }
}

.highlights {
  background-color: #1a1a1a;
  color: #fff;
}
.highlights h2 {
  text-align: center;
  padding: 5rem 0;
}
.highlights__grid {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 2rem;
  padding-bottom: 5rem;
}
@media (max-width: 56.25em) {
  .highlights__grid {
    grid-template-columns: 1fr;
  }
}
.highlights__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 19px;
}
.highlights__grid-cell {
  position: relative;
}
.highlights__grid-cell p {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  width: 80%;
}
.highlights__grid-cell:nth-child(1) {
  grid-row: 1/3;
}
.highlights__grid-cell:nth-child(1) p {
  position: absolute;
  left: 2rem;
  top: 2rem;
  width: 80%;
}

.info {
  background-color: #1a1a1a;
  color: #fff;
  padding-bottom: 5rem;
}
.info__text {
  width: 80%;
  text-align: center;
  margin: 0 auto;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 50em) {
  .info__text {
    text-align: left;
  }
}
.info__text h2,
.info__text .primary-heading {
  color: #cbb493;
}
.info video {
  width: 100%;
  display: block;
}
@media (max-width: 50em) {
  .info video {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 90%;
    border-radius: 19px;
    margin: 0 auto;
  }
}

.hepa {
  position: relative;
}
.hepa__text {
  color: #fff;
  position: absolute;
  top: 10rem;
  right: 5rem;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 50em) {
  .hepa__text {
    width: 90%;
    top: 1rem;
    left: 2rem;
  }
}
.hepa__text .secondary-heading {
  color: #cbb493;
  text-align: right;
}
.hepa__text-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: right;
}
.hepa__text-grid div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hepa__text-grid p {
  font-size: 1.6rem;
}

.smart {
  background-color: #1a1a1a;
  padding-bottom: 5rem;
}
.smart__text {
  width: 80%;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 5rem 0;
}
.smart__text .secondary-heading {
  color: #cbb493;
}
.smart__img > * {
  width: 80%;
  margin: 0 auto;
  display: block;
}
.smart__grid {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 37.5em) {
  .smart__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.smart__grid img {
  height: 100%;
  object-fit: cover;
  border-radius: 19px;
}
.smart__grid img:nth-child(1) {
  grid-row: 1/4;
}
.smart__double {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 90%;
  margin: 0 auto;
  color: #cbb493;
  gap: 2rem;
  padding-top: 5rem;
  text-align: center;
}
@media (max-width: 50em) {
  .smart__double {
    grid-template-columns: 1fr;
  }
}
.smart__double-cell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.list {
  background-color: #000;
  color: #fff;
}
.list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 80%;
  margin: 0 auto;
  padding: 5rem 0;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 50em) {
  .list__grid {
    grid-template-columns: 1fr;
  }
}
.list__grid-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.list__grid-text .secondary-heading {
  border-left: 3px solid #cbb493;
  padding-left: 1rem;
}

.operation {
  background-color: #1a1a1a;
}
.operation h2 {
  color: #cbb493;
  text-align: center;
  padding: 5rem 0;
}
.operation__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  color: #fff;
  gap: 2rem;
  padding: 2rem 0;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 50em) {
  .operation__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 50em) {
  .operation__grid img {
    grid-row: 1/2;
  }
}

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