.intro-video {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 600px;
}

.intro-video-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.intro-video-slide-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.intro-video-slide-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-video-slide-wrapper {
position: relative;
z-index: 2;
margin: 0 auto;
width: 100%;
max-width: var(--wp--style--global--content-size);
height: 100%;
}

.intro-video-slide-content {
  position: relative;
  z-index: 2;
  max-width: 697px;
  height: 100%;
  margin-right: auto;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.intro-video-slide-content h1,
.intro-video-slide-content h2,
.intro-video-slide-content h3,
.intro-video-slide-content h4,
.intro-video-slide-content h5,
.intro-video-slide-content h6 {
margin: 0;
color: #fff;
}

.intro-video-button {
  position: relative;
  display: flex;
  text-decoration: none;
  color: var(--wp--preset--color--custom-turquoise);
  font-weight: 700;
  padding-bottom: 8px;
}

.intro-video-button::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url(https://preprod.paulrogerdev.fr/preprod/ccr/wp-content/themes/ccr/assets/chart/chevron-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 4px;
  transform: translateY(1px);
}

.intro-video-button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--wp--preset--color--custom-turquoise);
}

.intro-video-contact-button-wrapper {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: var(--wp--style--global--content-size);
  transform: translateX(-50%);
}

.intro-video-contact-button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 0;
  left: 66.66%;
  padding: 16px 32px;
  background-color: var(--wp--preset--color--custom-turquoise);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.intro-address {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: var(--wp--style--global--content-size);
  transform: translateX(-50%);
}

.intro-address img {
  width: 24px;
  height: 24px;
}

.intro-address p {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 768px) {
  .intro-video-contact-button {
    left: 50%;
  }
}