/*******
	Breakpoints / Layout / Grid
********/
/*******
	Typography
********/
/*******
	Backgrounds
********/
/*********
	Elements
********/
/* Breakpoints START */
/* Breakpoints END */
/* Spacings START */
/* Spacings END */
.video-embed {
  padding-top: 48px;
  padding-bottom: 48px;
  width: 100vw;
  color: #111111;
  position: relative;
}
.video-embed__molecule {
  position: absolute;
  right: 0;
  top: 0;
  width: fit-content;
  height: auto;
  display: none;
  transform: translateX(60%);
}
@media (min-width: 1024px) {
  .video-embed__molecule {
    display: block;
  }
}
.video-embed__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
  align-items: center;
}
.video-embed__text-block {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .video-embed__text-block {
    position: relative;
    text-align: center;
    align-items: center;
  }
}
.video-embed__text-block--content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .video-embed__text-block--content {
    max-width: 720px;
  }
}
.video-embed__heading {
  font-size: 1.625rem;
}
@media (min-width: 1024px) {
  .video-embed__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .video-embed__description {
    font-size: 1.125rem;
  }
}
.video-embed__ctas {
  display: flex;
  flex-direction: column;
  width: fit-content;
  gap: 10px;
  width: 100%;
  justify-content: flex-start;
  padding-top: 20px;
}
@media (min-width: 1024px) {
  .video-embed__ctas {
    flex-direction: row;
    justify-content: center;
  }
}
.video-embed__ctas .btn {
  width: fit-content;
}
.video-embed__video-block {
  position: relative;
  width: 100%;
}
.video-embed__video-block .play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.video-embed__video-block .play-button.hide {
  display: none;
}
.video-embed__video-block .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-embed__video-block .video iframe {
  display: none;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.video-embed__video-block .video iframe.show {
  display: block;
}