.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%;
  }
}

body {
  background-color: #000;
  color: #fff;
}

.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 img {
  display: block;
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 50em) {
  .hero img {
    width: 100%;
  }
}
.hero h1 {
  width: 80%;
  margin: 0 auto;
  padding: 5rem 0;
  text-align: center;
}
.hero__video {
  width: 100%;
  display: block;
}
.hero__video-small {
  display: none;
}
@media (max-width: 50em) {
  .hero__video-small {
    display: block;
  }
}
@media (max-width: 50em) {
  .hero__video-big {
    display: none;
  }
}

.key {
  padding-bottom: 5rem;
}
.key h2 {
  width: 80%;
  margin: 0 auto;
  padding: 3rem 0;
  text-align: center;
}
.key__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 56.25em) {
  .key__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.key__grid-cell {
  text-align: center;
}
.key__grid-cell img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.line img {
  width: 60%;
  margin: 0 auto;
  display: block;
}

.info__text {
  width: 80%;
  text-align: center;
  margin: 0 auto;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 31.25em) {
  .info__text {
    width: 90%;
  }
}
.info video {
  display: block;
  width: 100%;
}
@media (max-width: 50em) {
  .info video {
    aspect-ratio: 1/1;
    object-fit: cover;
  }
}
.info img {
  display: block;
  width: 100%;
}

.linetext {
  position: relative;
}
.linetext h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
}
.linetext img {
  width: 60%;
  display: block;
  margin: 0 auto;
}
@media (max-width: 43.75em) {
  .linetext img {
    width: 90%;
  }
}

.double {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 5rem 0;
  align-items: center;
}
@media (max-width: 50em) {
  .double {
    grid-template-columns: 1fr;
  }
}
.double__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (max-width: 50em) {
  .double__text {
    grid-row: 1/2;
    width: 90%;
    margin: 0 auto;
  }
}
.double img {
  width: 100%;
  display: block;
}

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