/* LVL29 theme 8 additional content section. */
.additional-content-3 {
  position: relative;
  background-color: #000000;
}

.additional-content-3 .section-bg-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.additional-content-3 .section-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Overlay div Ã¢â‚¬â€ brown tint over the photo, colour set by the
   bg-dark-transparent class in the markup so the backend can retheme it. */
.additional-content-3 .section-bg-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.container.container-medium {
  max-width: 1140px;
  display: flex;
}

.additional-content-3 .container {
  position: relative;
  z-index: 5; /* box floats above whatever section it hangs into */
  margin-bottom: -130px; /* box overhangs its section */
  background: rgba(163, 147, 131, 0.7);
  padding: 50px 100px 85px;
  text-align: right;
  border-bottom-left-radius: 300px;
}

.additional-content-3 .section-details,
.additional-content-3 .section-counters {
  position: relative;
  width: 50%;
}

/* serif, matching live Ã¢â‚¬â€ the description reads as a heading there */
.additional-content-3 .section-details .section-content p {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
}

.additional-content-3 .single-counter-item {
  display: block;
  max-width: 320px;
  margin: 0 auto;
  padding: 30px 20px;
  text-align: center;
  border-bottom: 1px solid #9f662d;
  transition: all 0.8s ease;
}

.additional-content-3 .single-counter-item span.counter-detail {
  display: block;
  margin: 0;
  font-size: 1.071rem;
  font-weight: 700;
  line-height: 1.5;
  color: #382f2d;
}

.additional-content-3 .single-counter-item span.counter-number {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.429rem;
  font-weight: 700;
  line-height: 1.2;
}
/* ============================================================
   SECTION: ADDITIONAL CONTENT 3 - END
   ============================================================ */
.additional-content-3 .section-details:only-child {
  width: 100%;
}


/* ===== LVL29 HOME INTRO ===== */
#home-intro {
  overflow: hidden;
}

#home-intro .intro-container {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 88px);
}

#home-intro .left-col,
#home-intro .right-col {
  width: 50%;
}

#home-intro .intro-slider-wrapper,
#home-intro .img-wrapper {
  position: relative;
}

#home-intro .slide-bg,
#home-intro .img-wrapper {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

#home-intro .slide-bg img,
#home-intro .img-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#home-intro .content-wrapper {
  max-width: 560px;
}

#home-intro .intro-heading {
  margin-bottom: 22px;
}

#home-intro .section-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

#home-intro .play-pause-btn {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #1b1b1b;
  cursor: pointer;
}

#home-intro .play-pause-btn .swi-play,
#home-intro .play-pause-btn.is-paused .swi-pause {
  display: none;
}

#home-intro .play-pause-btn.is-paused .swi-play {
  display: inline-block;
}

@media (max-width: 767px) {
  #home-intro .intro-container {
    display: block;
  }

  #home-intro .left-col,
  #home-intro .right-col {
    width: 100%;
  }

  #home-intro .left-col {
    margin-bottom: 32px;
  }

  #home-intro .slide-bg,
  #home-intro .img-wrapper {
    aspect-ratio: 1 / 1;
  }
}
