
.introduction-logo {
  min-width: 200px;
  max-width: 390px;
  width: var(--custom-intro-logo-width);
}

.introduction-content {
  position: relative;
  width: 100vw;
  z-index: 1;
}

.introduction p {
  font-size: var(--custom-text-font-size);
  width: var(--custom-intro-blurb-width);
}

.introduction-video-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}

.introduction-btn {
  position: relative;
  transition: filter 0.4s ease-in-out;
  font-size: var(--custom-text-font-size) !important;
  z-index: 1;
  padding: min(max(var(--custom-item-padding-3-h), 0.5rem), 2rem) min(max(var(--custom-item-padding-5-w), 1rem), 6rem) !important;
}

.introduction-btn:hover {
  background-color: white;
  color: var(--primary-trust-blue);
  filter: var(--custom-button-hover);
}

.introduction-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 0;
}