* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

img,
video {
  display: block;
}

.add-bold {
  font-weight: 600;
}

.full-img {
  width: 100%;
}

.hero-logo {
  width: 13rem;
}

.primary-heading {
  font-size: 1.5rem;
  font-weight: 600;
}

.tertiary-heading {
  font-size: 1.3rem;
  font-weight: 600;
}

.basic-text {
  font-size: 1rem;
}

.section-hero {
  background-color: black;
  position: relative;
  color: white;
}

.hero-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  left: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background-color: rgba(0, 0, 0, 0.35);
  padding: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

@media (max-width: 992px) {
  .hero-text {
    position: relative;
    top: 0;
    transform: translateY(0);
    width: 80%;
    left: 0;
    margin: 0 auto;
    padding: 2rem 0;
  }
}

.small-img {
  display: none;
}

@media (max-width: 768px) {
  .small-img {
    display: block;
  }

  .big-img {
    display: none;
  }
}

.section-solution {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: black;
  color: white;
  padding-top: 5rem;
}

.solution-text {
  width: 80%;
  margin: 0 auto;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.section-sense {
  background-color: black;
  color: white;
}

.sense-text {
  margin: 0 auto;
  width: 70%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 3rem 0;
}

.sense-text:first-child {
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}

@media (max-width: 768px) {
  .section-solution {
    grid-template-columns: 1fr;
  }
}

.section-grid {
  background-color: black;
  color: white;
}

.section-grid img {
  border: 1px solid white;
}

.grid-text {
  width: 90%;
  margin: 0 auto;
  padding: 5rem 0 2rem;
}

.grid-one {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 90%;
  margin: 0 auto;
  padding-bottom: 5rem;
  gap: 2rem;
}

.cell-one {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

@media (max-width: 768px) {
  .grid-one {
    grid-template-columns: 1fr;
  }
}

.add-white .cv-carousel-slide {
  color: white !important;
}

.section-out {
  position: relative;
  background-color: black;
}

.out-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  width: 40%;
  margin-left: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.out-text .basic-text {
  line-height: 1.4;
}

@media (max-width: 768px) {
  .out-text {
    position: relative;
    top: 0;
    transform: translateY(0);
    width: 90%;
    margin-left: 0;
    margin: 0 auto;
    padding: 2rem 0;
  }

  .section-out img {
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: 70%;
  }
}

/* carousel */

.section-carousel {
  background-color: black;
}

.cv-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.cv-carousel-cont {
  position: relative;
}

.cv-carousel-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 4rem;
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cv-carousel-text .basic-text {
  line-height: 1.4;
}

.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: 50%;
    transform: translate(-50%);
    width: 80%;
    top: 5rem;
  }
}

@media (max-width: 576px) {
  .cv-carousel-text {
    top: 1rem;
  }
}

/* carousel */
