/* Breadcrumb / hero (used on video-gallery.html and contact.html) */
.breadcrumb-area {
  position: relative;
  z-index: 1;
  height: 370px;
}
@media (max-width: 767px) {
  .breadcrumb-area {
    height: 240px;
  }
}
.breadcrumb-area .page-title {
  color: #fff;
  font-size: 36px;
}
@media (max-width: 767px) {
  .breadcrumb-area .page-title {
    font-size: 24px;
  }
}
.breadcrumb-content {
  position: relative;
  z-index: 1;
  margin-top: 70px;
}

/* Video clips list */
#videoGallery .video-clips-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

#videoGallery .video-clip {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

#videoGallery .video-clip:last-child {
  border-bottom: none;
}

#videoGallery .video-clip-embed {
  background: #111;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

#videoGallery .video-clip-embed iframe {
  width: 100%;
  height: 100%;
}

#videoGallery .video-clip-title {
  color: inherit;
  font-weight: 600;
}

#videoGallery .video-clip-text {
  color: #6c757d;
  line-height: 1.65;
}

/* Large screens only: even clips = video right, text left */
@media (min-width: 992px) {
  #videoGallery .video-clip:nth-child(even) .row {
    flex-direction: row-reverse;
  }
}

@media (max-width: 991.98px) {
  #videoGallery .video-clip {
    padding: 1.5rem 0;
  }
  #videoGallery .video-clip .col-lg-6:first-child {
    margin-bottom: 0.5rem;
  }
}