.introduction-videos {
  background-color: #fffdf3;
  margin: 0;
  padding-top: 80px;
  padding-bottom: 160px;
}

.introduction-videos .breadcrumbs {
  color: #595959;
  font-weight: 500;
}

.introduction-videos .breadcrumbs a {
  color: #595959;
  text-decoration: none;
  cursor: pointer;
}

.introduction-videos .breadcrumbs i {
  padding: 0 16px;
}

.introduction-videos .video-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.introduction-videos .video-list .video-list-item {
  cursor: pointer;
  padding-bottom: 10px;
}

.introduction-videos .video-list .video-list-item:hover{
    color: #49762E;
}

.introduction-videos .section-title {
  color: #28a745;
  text-align: center;
  padding: 48px 0 20px 0;
}

.introduction-videos .section-description {
  text-align: center;
  max-width: 607px;
  margin: 0 auto;
}

.introduction-videos .circle-container {
  display: flex;
  justify-content: center;
  margin-top: 10%;
}

.introduction-videos .circle-icon .icon-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.introduction-videos .circle-icon i {
  margin-bottom: 10px;
}

.introduction-videos .circle-icon p {
  font-size: 12px;
  color: #595959;
}

.introduction-videos .batery {
  width: 40px;
  height: 30px;
}

@media only screen and (max-width: 767px) {
  .introduction-videos .circle-container {
    margin-top: 50%;
  }
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-modal.is-open {
  display: flex;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.video-modal__content {
  position: relative;
  background: #000;
  max-width: 960px;
  width: 90%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.video-modal__player {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  background: #000;
}

.video-modal__close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
