* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

.primary-heading {
  font-size: 2rem;
  font-weight: 400;
}

.secondary-heading {
  font-size: 1.6rem;
  font-weight: 400;
}

.tertiary-heading {
  font-size: 1.3rem;
}

.basic-text {
  font-size: 1rem;
}

.add-bold {
  font-weight: 700;
}

.add-white {
  color: white;
}

img,
video {
  display: block;
}

.full-img {
  width: 100%;
}

.small-img {
  display: none;
}

@media (max-width: 768px) {
  .big-img {
    display: none;
  }

  .small-img {
    display: block;
  }
}

.hero-text {
  width: 80%;
  text-align: center;
  margin: 5rem auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-cont {
  background-color: black;
  color: white;
  padding: 5rem 0;
}

.hero-grid {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.hero-cell {
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .section-hero video,
  .section-hero img {
    aspect-ratio: 1/1;
    object-fit: cover;
  }
}

.section-carousel {
  background-color: #c5ccd2;
}

.set {
  position: relative;
  background-color: #171c20;
}

.set-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5rem;
  width: 40%;
  line-height: 1.6;
  color: white;
}

@media (max-width: 768px) {
  .set-text {
    position: relative;
    left: 0;
    transform: translateX(0);
    top: 0;
    width: 80%;
    margin: 0 auto;
    padding: 2rem 0;
  }
}

/* carousel */

.carousel-inside {
  position: relative;
}

.crs-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5rem;
  width: 40%;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .crs-text {
    left: 50%;
    transform: translateX(-50%);
    top: 2rem;
    width: 80%;
  }
}

.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 */
