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

.tertiary-heading {
  font-size: 2.2rem;
}

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

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

.info {
  width: 80%;
  margin: 5rem auto;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.info__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info img {
  width: 100%;
  display: block;
}
.info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 90%;
  margin: 5rem auto;
}
@media (max-width: 56.25em) {
  .info__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 31.25em) {
  .info__grid {
    grid-template-columns: 1fr;
  }
}
.info__grid-cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.info__grid-cell img {
  width: 100%;
  display: block;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 80%;
  margin: 5rem auto;
  align-items: center;
  background-color: #efefef;
}
@media (max-width: 56.25em) {
  .grid {
    grid-template-columns: 1fr;
  }
}
.grid__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 3rem;
}
@media (max-width: 56.25em) {
  .grid__text {
    grid-row: 2/3;
  }
}
.grid__text p:first-child {
  border-bottom: 1px solid black;
  padding-bottom: 0.5rem;
}
.grid img {
  width: 100%;
  display: block;
}

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