.carousel {
  width: 70%;
  margin: 10rem auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
@media only screen and (max-width: 43.75em) {
  .carousel {
    width: 80%;
  }
}
.carousel__heading {
  font-size: 3.2rem;
}

.vs-carousel {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 1rem;
  width: 70%;
  padding: 2rem 0 5rem;
}
@media only screen and (max-width: 43.75em) {
  .vs-carousel {
    width: 80%;
  }
}
.vs-carousel video,
.vs-carousel img {
  border-radius: 12px;
}
.vs-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}
.vs-carousel-slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  line-height: 1.4;
}
.vs-carousel-slide-text {
  font-size: 1.5rem;
}
.vs-carousel-image > *,
.vs-carousel video {
  width: 100%;
  display: block;
}
.vs-carousel__video {
  width: 100%;
}
.vs-carousel__video-small {
  display: none;
}
@media (max-width: 43.75em) {
  .vs-carousel__video-small {
    display: block;
  }
}
.vs-carousel__video-big {
  display: block;
}
@media (max-width: 43.75em) {
  .vs-carousel__video-big {
    display: none;
  }
}
.vs-carousel-btn {
  position: absolute;
  top: 40%;
  background: rgba(0, 0, 0, 0.5019607843);
  color: white;
  border: none;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vs-carousel-btn.prev {
  left: 1rem;
}
.vs-carousel-btn.next {
  right: 1rem;
}
.vs-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}
.vs-carousel-dots button {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
}
.vs-carousel-dots button.active {
  background: #333;
}

.one {
  width: 70%;
  margin: 10rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (max-width: 43.75em) {
  .one {
    width: 80%;
  }
}
.one video,
.one img {
  width: 100%;
  display: block;
  margin: 2rem 0;
}

* {
  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 {
  background-color: #000;
  color: #fff;
}
.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 {
  background-color: #000;
  color: #fff;
}
.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;
  right: 5rem;
  text-align: right;
  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 */
