
.section-video {
    padding-top: 98px;
    padding-bottom: 98px;
    background: linear-gradient(to bottom, #CB008C 50%, rgba(255,255,255,0) 50%);
}


.video-wrapper {
  position: relative;
  width: 1298px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  direction: ltr;
}
#custom-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 50%;
  color: #CB008C;
  width: 128px;
  height: 128px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  padding-left: 1%;
}
.play-btn img {
  width: 40px;
}
.play-btn:hover {
  background: rgba(255, 255, 255, 1);
}

.controls {
  position: absolute;
  bottom: 80px;
  left: 42px;
  right: 42px;
  height: 8px;
  background: transparent;
  z-index: 1;
  overflow: hidden;
}

.progress-bar-video {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 8px;
  height: 1px;
  margin-top: 3.5px;
}

.progress-fill {
  width: 0%;
  height: 8px;
  border-radius: 8px;
  transform: translateY(-3.5px);
  top: -3.5px;
  background-color: #E5007D;
  transition: width 0.8s ease;
}

@media (max-width: 1199px) {
  .video-wrapper {
    max-width: 100%;
  }
  .play-btn {
    font-size: 32px;
    width: 88px;
    height: 88px;
  }
  .play-btn img {
  width: 24px;
}
}

@media (max-width: 767px) {
      .play-btn {
        font-size: 24px;
        width: 56px;
        height: 56px;
        padding-left: 10px;
    }
    .play-btn img {
  width: 20px;
}
    .controls {
    bottom: 22px;
    left: 20px;
    right: 20px;
}
}