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

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

.hero {
  position: relative;
}
.hero h1 {
  position: absolute;
  top: 3rem;
  left: 3rem;
  width: 80%;
}
.hero__img > * {
  width: 100%;
  display: block;
}
.hero iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
}

.specs h2 {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 5rem;
}
.specs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 90%;
  margin: 0 auto;
  gap: 2rem;
  padding-bottom: 5rem;
}
@media (max-width: 56.25em) {
  .specs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 25em) {
  .specs__grid {
    grid-template-columns: 1fr;
  }
}
.specs__grid-cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}
.specs__grid-cell img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.info__text {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 5rem 0;
}
.info__video {
  width: 100%;
  display: block;
}
.info__video-small {
  display: none;
}
@media (max-width: 50em) {
  .info__video-small {
    display: block;
  }
}
@media (max-width: 50em) {
  .info__video-big {
    display: none;
  }
}

.grid {
  position: relative;
}
.grid__text {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 50em) {
  .grid__text {
    left: 50% !important;
    right: auto !important;
    top: 8rem;
    width: 80%;
    transform: translate(-50%, 0);
  }
}
.grid__text-left {
  left: 5rem;
}
.grid__text-right {
  right: 5rem;
  text-align: right;
}
.grid__img > * {
  width: 100%;
  display: block;
}
.grid__video {
  width: 100%;
  display: block;
}
.grid__video-small {
  display: none;
}
@media (max-width: 50em) {
  .grid__video-small {
    display: block;
  }
}
@media (max-width: 50em) {
  .grid__video-big {
    display: none;
  }
}

.hdmi {
  position: relative;
}
.hdmi__img > * {
  width: 100%;
  display: block;
}
.hdmi__text {
  position: absolute;
  top: 5rem;
  left: 5rem;
  text-align: left;
  width: 43%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 56.25em) {
  .hdmi__text {
    width: 80%;
    left: 50%;
    transform: translate(-50%, 0);
    right: auto;
    text-align: left;
  }
}

.blue {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 90%;
  margin: 5rem auto;
  gap: 3rem;
}
@media (max-width: 50em) {
  .blue {
    grid-template-columns: 1fr;
  }
}
.blue__cell {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: #f7f7f7;
  border-radius: 20px;
  overflow: hidden;
}
.blue__cell-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 3rem;
}
.blue__cell img {
  width: 100%;
}

.audio {
  position: relative;
}
.audio__img > * {
  width: 100%;
  display: block;
}
.audio__text {
  position: absolute;
  width: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

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