.elementor-183317 .elementor-element.elementor-element-58b4466{--spacer-size:25px;}.elementor-183317 .elementor-element.elementor-element-d61c462 > .elementor-container{max-width:1191px;}.elementor-183317 .elementor-element.elementor-element-ccab5d6{--spacer-size:50px;}.elementor-183317 .elementor-element.elementor-element-4dec087{--spacer-size:50px;}body.elementor-page-183317:not(.elementor-motion-effects-element-type-background), body.elementor-page-183317 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}/* Start custom CSS for html, class: .elementor-element-f081bbc */.training-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
}

.responsive-video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Large Play Button */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 20px 40px;
  font-size: 24px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.play-button:hover {
  background-color: rgba(0, 0, 0, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Countdown Overlay */
.countdown-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  border-radius: 8px;
}

/* CTA Button */
.button-container {
  margin-top: 20px;
}

.customization-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  background-color: blue;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.customization-button:hover {
  background-color: darkblue;
  transform: scale(1.05);
}

/* Adjustments for larger video on desktop */
@media (min-width: 1024px) {
  .video-container {
    max-width: 1600px;
  }

  .responsive-video {
    border-radius: 10px;
  }
}

/* Adjustments for smaller devices */
@media (max-width: 768px) {
  .responsive-video {
    border-radius: 5px;
  }

  .play-button {
    font-size: 18px;
    padding: 15px 30px;
  }
}/* End custom CSS */