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

html {
  font-size: 62.5%;
}
@media (max-width: 31.25em) {
  html {
    font-size: 50%;
  }
}

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

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

.primary-heading {
  font-size: 3.2rem;
  font-weight: 600;
}

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

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

.hero__text {
  width: 80%;
  margin: 5rem auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 2rem;
  padding: 3rem 5rem;
}
@media (max-width: 50em) {
  .grid-two {
    grid-template-columns: 1fr;
  }
}
.grid-two__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 50em) {
  .grid-two__text {
    grid-row: 1/2;
  }
}

.blue-bg {
  background-color: #c4d4e3;
}

.details {
  background-color: #212731;
}
.details h2 {
  text-align: center;
  color: #fff;
  padding: 5rem 0 0;
}
.details__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 90%;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}
@media (max-width: 62.5em) {
  .details__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 37.5em) {
  .details__grid {
    grid-template-columns: 1fr;
  }
}
.details__grid-cell {
  background-color: #fff;
  padding: 4rem;
  border-radius: 19px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.double {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 90%;
  margin: 5rem auto;
  gap: 2rem;
}
@media (max-width: 50em) {
  .double {
    grid-template-columns: 1fr;
  }
}
.double__cell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.double__cell p {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.double__cell span {
  background-color: #000;
  color: #fff;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1000px;
  flex-shrink: 0;
  flex-grow: 0;
}
.double h2 {
  grid-column: 1/-1;
  text-align: center;
}/*# sourceMappingURL=Index.css.map */