.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 > * {
  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;
}

* {
  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;
}

.info {
  background-color: #000000;
  color: #fff;
  position: relative;
}
@media (max-width: 50em) {
  .info {
    padding-top: 3rem;
  }
}
@media (max-width: 30em) {
  .info {
    padding-top: 9rem;
  }
}
.info__text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translate(-50%, 0);
}
.info__img > *,
.info video {
  width: 100%;
  display: block;
}

.vid {
  background-color: #000;
  color: #fff;
}
.vid__text {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 0;
}
.vid video {
  width: 100%;
  display: block;
}

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