<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

@media (max-width: 768px) {
  html {
    font-size: 80%;
  }
}

.small-img {
  display: none;
}

@media (max-width: 768px) {
  .small-img {
    display: block;
  }

  .big-img {
    display: none;
  }
}

.full-img {
  width: 100%;
}

.primary-heading {
  font-size: 2.4rem;
  font-weight: 700;
}

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

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

.info-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0;
}

@media (max-width: 768px) {
  .info-text {
    text-align: left;
  }
}

.section-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.section-info-grid .info-text {
  width: 90%;
  margin: 0 auto;
  justify-content: center;
}

@media (max-width: 768px) {
  .section-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Carousel */

.vs-carousel {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 1rem;
  width: 90%;
  padding: 5rem 0;
}

.vs-carousel video,
.vs-carousel img {
  border-radius: 12px;
}

@media (max-width: 768px) {
  .vs-carousel img {
    aspect-ratio: 3/4;
    object-fit: cover;
  }
}

.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;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.vs-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #00000080;
  color: white;
  border: none;
  width: 3.6rem;
  height: 3.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: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
}

.vs-carousel-dots button.active {
  background: #333;
}

.carousel-hero {
  width: 90%;
  margin: 0 auto;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Carousel */
</pre></body></html>