* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

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

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

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

.big-img {
  width: 100%;
}

.small-img {
  display: none;
  width: 100%;
}

.full-img {
  width: 100%;
}

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

  .small-img {
    display: block;
  }
}

.section-hero {
  position: relative;
}

.hero-text {
  position: absolute;
  width: 80%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 5vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: white;
}

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

@media (max-width: 768px) {
  .section-info video,
  .section-info img {
    aspect-ratio: 3/4;
    object-fit: cover;
  }

  .info-text {
    text-align: left;
  }
}

.perf-hero {
  width: 80%;
  margin: 0 auto;
  margin: 3rem auto 0;
}

/* carousel */

.cv-carousel-container {
  position: relative;
  width: 80%;
  margin: 3rem auto 5rem;
  overflow: hidden;
  border-radius: 10px;
}

.cv-carousel-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  touch-action: pan-y;
}

.cv-carousel-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.cv-carousel-slide img,
.cv-carousel-slide video {
  border-radius: 10px;
}

.cv-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
  padding: 1.5rem;
}

.cv-carousel-btn-left {
  left: 10px;
}

.cv-carousel-btn-right {
  right: 10px;
}

.cv-carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.cv-carousel-dots {
  text-align: center;
  padding: 10px 0;
}

.cv-carousel-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.cv-carousel-dot-active {
  background-color: #333;
}
