/* ===============================
   ABOUT US LAYOUT
================================ */
.aboutus-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.aboutus-text {
  color: #283128;
}

.aboutus-text h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.aboutus-text h3 {
  margin-top: 24px;
  font-size: 20px;
}

.aboutus-text p {
  line-height: 1.7;
  margin-bottom: 14px;
}

.aboutus-text ul {
  margin-left: 18px;
  line-height: 1.8;
}

/* ===============================
   ABOUT SLIDER
================================ */
.about-slider {
  margin-top: 40px;
}

/* MAIN IMAGE */
.about-slider-main {
  position: relative;
}

.about-slider-main img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  border-radius: 16px;
  transition: opacity 0.4s ease;
}

/* NAV BUTTON */
.about-prev,
.about-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(40, 49, 40, 0.75);
  color: #fff;
  border: none;
  font-size: 26px;
  padding: 6px 14px;
  border-radius: 50%;
  cursor: pointer;
}

.about-prev {
  left: 12px;
}
.about-next {
  right: 12px;
}

.about-prev:hover,
.about-next:hover {
  background: #708871;
}

/* THUMBNAILS */
.about-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.about-thumbnails img {
  width: 70px;
  height: 55px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s;
}

.about-thumbnails img.active,
.about-thumbnails img:hover {
  opacity: 1;
  outline: 2px solid #708871;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-slider-main img {
    height: 260px;
  }

  .about-thumbnails {
    justify-content: center;
    flex-wrap: wrap;
  }
}
