* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
}

.full-img {
  width: 100%;
}

.small-img {
  display: none;
}

.make-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 500px) {
  html {
    font-size: 85%;
  }
}

@media (max-width: 768px) {
  .small-img {
    display: block;
  }

  .big-img {
    display: none;
  }
}

.primary-heading {
  font-size: 2.4rem;
}

.secondary-heading {
  font-size: 1.6rem;
}

.tertiary-heading {
  font-size: 1.4rem;
}

.basic-text {
  font-size: 1.1rem;
}

/* Carousel */

.vs-carousel {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 1rem;
  width: 100%;
  padding: 3rem 0;
}

.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;
  position: relative;
}

.vs-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  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: 90%;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.carousel-float {
  position: absolute;
  top: 0;
  bottom: 0;
  height: fit-content;
  width: 40%;
  left: 10vw;
  margin: auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.add-white {
  color: white;
}

@media (max-width: 768px) {
  .vs-carousel-btn {
    display: none;
  }

  .carousel-float {
    width: 80%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 5vw;
  }
}

.grid-hero {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  width: 80%;
  margin: 3rem auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 90%;
  margin: 0 auto 2rem;
}
