* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

.primary-heading {
  font-size: 2rem;
}

.secondary-heading {
  font-size: 1.6rem;
}

.add-bold {
  font-weight: 700;
}

.basic-text {
  font-size: 1.4rem;
}

.full-img {
  width: 100%;
}

.small-img {
  display: none;
}

@media (max-width: 768px) {
  .big-img {
    display: none;
  }

  .small-img {
    display: block;
  }
}

.section-hero {
  position: relative;
  background-color: black;
}

.hero-text {
  position: absolute;
  width: 80%;
  margin: auto;
  display: block;
  left: 0;
  right: 0;
  text-align: center;
  height: fit-content;
  top: 0;
  bottom: 0;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-perfect,
.section-specs {
  background-color: black;
  color: white;
  padding-bottom: 3rem;
}

.perfect-text {
  width: 80%;
  margin: 0 auto;
  display: block;
  text-align: center;
  color: white;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-specs .carousel-cent1 {
  color: white;
}

/* carousel */
.carousel-cent {
  color: white;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
  width: fit-content;
  font-weight: 700;
  text-transform: uppercase;
}

.carousel-cent1 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7vw;
  height: fit-content;
  width: 40%;
  margin: auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 768px) {
  .carousel-cent {
    position: relative;
    padding-top: 2rem;
  }

  .carousel-cent1 {
    position: relative;
    width: 80%;
    margin: 0 auto;
    left: 0;
    padding-top: 3rem;
    color: white;
  }

  .scip-img {
    aspect-ratio: 3/4;
    object-fit: cover;
  }

  .scip-img1 {
    aspect-ratio: 5/3;
    object-fit: cover;
  }
}

.cv-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  padding-bottom: 3rem;
}

.cv-carousel-cont {
  position: relative;
}

.cv-carousel-text {
  position: absolute;
  top: 0;
  bottom: 0;
  height: fit-content;
  margin: auto 0;
  width: 40%;
  margin-left: 5rem;
}

.cv-carousel-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.cv-carousel-slide {
  min-width: 100%;
  color: #333;
  font-size: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cv-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.cv-carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.cv-carousel-btn-left {
  left: 10px;
}

.cv-carousel-btn-right {
  right: 10px;
}

.cv-carousel-dots {
  text-align: center;
  margin-top: 10px;
}

.cv-carousel-dot {
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.cv-carousel-dot-active {
  background-color: #333;
}

@media (max-width: 768px) {
  .cv-carousel-text {
    left: 0;
    right: 0;
    width: 80%;
    margin: 0 auto;
    top: 10vw;
  }
}

/* carousel */
