* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
}

img,
video {
  display: block;
}

.big-img {
  width: 100%;
  display: block;
}

.small-img {
  display: none;
  width: 100%;
}

.add-relative {
  position: relative;
}

.full-img {
  width: 100%;
}

@media (max-width: 768px) {
  .small-img {
    display: block;
  }

  .big-img {
    display: none;
  }

  .cut {
    aspect-ratio: 1/1;
    object-fit: cover;
  }
}

.primary-heading {
  font-size: 2.4rem;
  font-weight: 600;
}

.secondary-heading {
  font-size: 1.8rem;
  font-weight: 600;
}

.tertiary-heading {
  font-size: 1.4rem;
}

.basic-text {
  font-size: 1.1rem;
}

.section-hero {
  position: relative;
}

.section-hero h1 {
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  width: 80%;
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  text-align: center;
  width: 80%;
  margin: 5rem auto;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .info-text {
    text-align: left;
  }
}

/* Carousel */

.vs-carousel {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin-left: 10vw;
  border-radius: 1rem;
  width: 70%;
  padding: 2rem 0 5rem;
}

.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%; /* each slide takes full width of carousel */
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  line-height: 1.4;
}

.vs-carousel-btn {
  position: absolute;
  top: 40%;
  background: #00000080;
  color: white;
  border: none;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.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: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
}

.vs-carousel-dots button.active {
  background: #333;
}

.carousel-hero {
  width: 80%;
  margin: 0 auto;
  padding: 3rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

@media (max-width: 768px) {
  .vs-carousel {
    width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .vs-carousel-btn {
    top: 30%;
  }

  .vs-carousel-btn.prev {
    left: 0.2rem;
  }

  .vs-carousel-btn.next {
    right: 0.2rem;
  }
}
