* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

.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;
  }
}

.add-bold {
  font-weight: 700;
}

.add-relative {
  position: relative;
}

.primary-heading {
  font-size: 2.4rem;
  font-weight: 700;
}

.secondary-heading {
  font-size: 1.8rem;
  font-weight: 700;
}

.tertiary-heading {
  font-size: 1.2rem;
  font-weight: 700;
}

.basic-text {
  font-size: 1rem;
}

.section-hero {
  padding-bottom: 5rem;
}

.section-hero h1 {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 90%;
  margin: 0 auto;
  gap: 1rem;
}

.hero-cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.hero-cell img {
  border-radius: 20px;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.section-info {
  padding-bottom: 3rem;
}

.info-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 80%;
  margin: 0 auto;
  padding: 3rem 0;
}

.grid-hero {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0;
}

.grid-text {
  position: absolute;
  top: 0;
  bottom: 0;
  height: fit-content;
  margin: auto 0;
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  left: 3vw;
}

.grid-text2 {
  position: absolute;
  top: 0;
  bottom: 0;
  height: fit-content;
  margin: auto 0;
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  right: 3vw;
}

@media (max-width: 768px) {
  .grid-text,
  .grid-text2 {
    position: relative;
    width: 80%;
    left: 0;
    right: 0;
    margin: 2rem auto;
  }

  .crop2 {
    aspect-ratio: 3/2;
    object-fit: cover;
  }
}

.section-spec {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  width: 80%;
  margin: 5rem auto;
  gap: 2rem;
}

.spec-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spec-cell p {
  position: absolute;
  left: 2vw;
  top: 2vw;
  width: 80%;
}

.spec-cell:first-child {
  grid-area: 1/ 1 / 3/2;
}

.spec-cell:last-child {
  grid-area: 2 / 2 / 3 / -1;
}

@media (max-width: 768px) {
  .section-spec {
    grid-template-columns: 1fr;
  }

  .spec-cell:first-child,
  .spec-cell:last-child {
    grid-area: auto;
  }

  .spec-cell img {
    aspect-ratio: 1/1;
  }

  .spec-cell p {
    left: 5vw;
    top: 5vw;
  }
}

/* Carousel */

.vs-carousel {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  width: 80%;
  margin: 5rem auto;
}

.vs-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.vs-carousel-slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  text-align: center;
  justify-content: end;
}

.vs-carousel-slide img {
  border-radius: 20px;
}

@media (max-width: 768px) {
  .vs-carousel-slide img {
    aspect-ratio: 1/1;
    object-fit: cover;
  }
}

.vs-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #00000080;
  color: white;
  border: none;
  width: 2.6rem;
  height: 2.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: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
}

.vs-carousel-dots button.active {
  background: #333;
}

.carousel-hero {
  width: 80%;
  padding: 3rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .vs-carousel-btn {
    display: none;
  }

  .vs-carousel img,
  .crop {
    aspect-ratio: 3/4;
    object-fit: cover;
  }
}
