.carousel {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
.carousel__heading {
  font-size: 3.2rem;
}

.vs-carousel {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto 2rem;
  width: 100%;
}
.vs-carousel-text {
  font-size: 1.5rem;
  position: absolute;
  top: 50%;
  left: 8rem;
  transform: translate(0, -50%);
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 40em) {
  .vs-carousel-text {
    top: 8rem;
    left: 50%;
    transform: translate(-50%, 0);
    width: 80%;
  }
  .vs-carousel-text-bottom {
    bottom: 12rem;
    top: auto;
  }
}
.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;
  position: relative;
}
.vs-carousel-image > * {
  width: 100%;
  display: block;
}
.vs-carousel-btn {
  position: absolute;
  top: 50%;
  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;
}

.add-white {
  color: #fff !important;
}

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

.secondary-heading {
  font-size: 2.6rem;
  font-weight: 600;
}

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

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

.info__text {
  width: 90%;
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.info__img > * {
  width: 100%;
  display: block;
}

.title1 {
  text-align: center;
  padding: 2rem 0;
  background-color: #ebebeb;
}
.title1 h2 {
  width: 95%;
  margin: 0 auto;
}

.title2 {
  text-align: center;
  padding: 2rem 0;
  background-color: #000;
  color: #fff;
}
.title2 h2 {
  width: 95%;
  margin: 0 auto;
}

.key h2 {
  width: 90%;
  margin: 0 auto 2rem;
}
.key__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 90%;
  margin: 0 auto 2rem;
  gap: 2rem;
}
@media (max-width: 56.25em) {
  .key__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 37.5em) {
  .key__grid {
    grid-template-columns: 1fr;
  }
}
.key__grid-cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.key__grid-cell img {
  width: 100%;
}

.absorb {
  position: relative;
  background-color: #000;
}
.absorb__img > * {
  width: 100%;
  display: block;
}
.absorb__text {
  position: absolute;
  top: 50%;
  left: 5rem;
  transform: translate(0, -50%);
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #fff;
}
@media (max-width: 40em) {
  .absorb__text {
    position: relative;
    width: 80%;
    top: auto;
    left: auto;
    transform: translate(0, 0);
    margin: 0 auto;
    padding: 3rem 0;
  }
}

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