* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
 
  font-family: "Jost", sans-serif;
  overflow-x: hidden;
}

.featured-scenes {
  position: relative;
  padding: 50px 0 70px;
  overflow: hidden;
background: #0C0D11;
}

.featured-scenes::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.015),
      rgba(255,255,255,.015) 1px,
      transparent 1px,
      transparent 120px
    );
  pointer-events: none;
}

.section-title {
  margin-bottom: 40px;
}

.section-title span {
  display: block;
  color: #4da3ff;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-title h2 {
  color: #fff;

  font-weight: 700;
  line-height: 1;
}

.slider-wrap {
  position: relative;
}

.scene-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
}

.scene-card img {
  width: 100%;
  height: 100%;
object-fit: fill;
  display: block;
}

.scene-card .overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.92),
      rgba(0,0,0,.2),
      transparent
    );
}

.scene-card .content {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 2;
}

.scene-card span {
  color: #4da3ff;
  font-size: 18px;
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}

.scene-card h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.custom-prev,
.custom-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);

  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.custom-prev {
  left: -25px;
}

.custom-next {
  right: -25px;
}

.custom-prev i,
.custom-next i {
  color: #fff;
  font-size: 4;
}

.bottom-bar {

  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.audio-btn {
  width: 30px;
  height: 30px;


  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 24px;
}

.timeline {
  width: 470px;
}

.timeline-top {
  display: flex;
  justify-content: space-between;
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
}

.line {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,.25);
}

.progress {
  width: 55%;
  height: 100%;
  background: #3d8dff;
}
.scene-card img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
@media (max-width: 768px) {
  .top-small {
    font-size: 12px !important;
    letter-spacing: 1px;
  }
}

@media (max-width: 576px) {
  .top-small {
    font-size: 11px !important;
  }
}