.padding6rem{
  padding: 6rem;
}

.parallax-section {
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  padding: 100px 0;
  color: #fff;
}


.parallax-section h2 {
  color: #fff;
}

.parallax-section p {
  color: rgba(255, 255, 255, 0.8);
}

.featurette {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.featurette-heading {
  margin-bottom: 2rem;
}

.pricing-header {
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .carousel-item {
    height: auto;
    background-size: contain;
  }

  /* Center carousel videos */
  .carousel-item video {
    display: block;
    margin: 0 auto;
    /*max-width: 100%;*/
    width: 100%;
    max-height: 650px!important;
  }

  .carousel-item .w-100 {
    width: unset!important;
  }


  .padding6rem {
    padding: 3rem;
  }

  h2.featurette-heading {
    font-size: 24px;
  }
  p.lead {
    font-size: 16px;
  }
  .display-4 {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
}
}

/* Section Rhythm */
section {
    padding: 4rem 0;
}

/* Visual Rhythm - PR 24 */
.section-white {
  background-color: #ffffff;
  width: 100%;
}

.section-light {
  background-color: #f8f9fa; /* Bootstrap light */
  width: 100%;
}

.section-muted {
  background-color: #e9ecef; /* Bootstrap gray-200 */
  width: 100%;
}

/* On-Scroll Animations */
.animate-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  will-change: opacity, transform;
}

.animate-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
