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

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

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

.hero__cell {
  position: relative;
}
.hero__cell-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: absolute;
}
.hero__cell-text-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  text-shadow: 0 0.5rem 1rem #111;
}
.hero__cell-text-topright {
  top: 5rem;
  right: 5rem;
  color: white;
  text-align: right;
}
@media only screen and (max-width: 50em) {
  .hero__cell-text-topright {
    right: 50%;
    text-align: center;
    transform: translate(50%, 0);
    width: 80%;
  }
}
.hero__cell-text-topright2 {
  top: 5rem;
  right: 5rem;
  text-align: right;
  width: 50%;
}
@media only screen and (max-width: 50em) {
  .hero__cell-text-topright2 {
    right: 50%;
    text-align: center;
    transform: translate(50%, 0);
    width: 80%;
  }
}
.hero__cell-text-topleft {
  top: 5rem;
  left: 5rem;
  color: white;
  width: 50%;
}
@media only screen and (max-width: 50em) {
  .hero__cell-text-topleft {
    left: 50%;
    text-align: center;
    transform: translate(-50%, 0);
    width: 80%;
  }
}
.hero__cell-text-bottom {
  bottom: 5rem;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
}
@media only screen and (max-width: 50em) {
  .hero__cell-text-bottom {
    width: 80%;
  }
}
.hero__cell-text-left {
  bottom: 50%;
  left: 3rem;
  transform: translate(0, -50%);
  color: white;
  width: 50%;
}
@media only screen and (max-width: 50em) {
  .hero__cell-text-left {
    bottom: 5rem;
    left: 50%;
    text-align: center;
    transform: translate(-50%, 0);
    width: 80%;
  }
}
.hero__cell-image > * {
  width: 100%;
  display: block;
}
.hero iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}

.connect {
  margin: 15rem 0;
}
.connect__image > * {
  width: 100%;
  display: block;
}
.connect__text {
  width: 80%;
  margin: 5rem auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.connect__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 90%;
  margin: 5rem auto 0;
  gap: 1rem;
}
@media (max-width: 62.5em) {
  .connect__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 43.75em) {
  .connect__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 25em) {
  .connect__grid {
    grid-template-columns: 1fr;
  }
}
.connect__grid-cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  align-items: center;
}
.connect__grid-cell img {
  width: 5rem;
}

.love {
  margin-bottom: 15rem;
}
.love h2 {
  background-color: black;
  color: white;
  text-align: center;
  padding: 3rem;
}
.love__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 90%;
  margin: 5rem auto 10rem;
  gap: 2rem;
}
@media (max-width: 56.25em) {
  .love__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 31.25em) {
  .love__grid {
    grid-template-columns: 1fr;
  }
}
.love__grid-cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.love__grid-cell img {
  width: 100%;
  margin-bottom: 1rem;
}

.specs h2 {
  background-color: black;
  color: white;
  text-align: center;
  padding: 3rem;
  margin-bottom: 10rem;
}
.specs h3 {
  font-weight: 400;
  border-bottom: 1px solid #111;
  width: 90%;
  margin: 10rem auto 5rem;
  padding-bottom: 0.5rem;
}
.specs__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  width: 90%;
  margin: 0 auto 5rem;
}
@media (max-width: 800px) {
  .specs__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .specs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .specs__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.specs__grid-cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}
.specs__grid-cell .basic-text {
  font-size: 1.3rem !important;
}
.specs__grid-cell img {
  width: 5rem;
  align-self: center;
}
.specs__grid-cell .add-bold {
  font-weight: 600;
  text-transform: uppercase;
}

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