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

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

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

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

.logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 80%;
  margin: 5rem auto 10rem;
  gap: 2rem;
}
@media (max-width: 50em) {
  .logos {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 25em) {
  .logos {
    grid-template-columns: 1fr;
  }
}
.logos__cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}
.logos__cell img {
  width: 10rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 80%;
  margin: 2rem auto;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 50em) {
  .grid {
    grid-template-columns: 1fr;
  }
}
.grid img {
  width: 100%;
  border-radius: 20px;
}
@media (max-width: 50em) {
  .grid img {
    grid-row: 1/2;
  }
}

.back {
  background-color: #1a110a;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 5rem 0;
}
@media (max-width: 50em) {
  .back {
    grid-template-columns: 1fr;
  }
}
.back__text {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}
.back img {
  width: 100%;
  display: block;
}
@media (max-width: 50em) {
  .back img {
    grid-row: 1/2;
  }
}

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