.text-and-video {
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .text-and-video {
    padding: 2.25rem 0;
  }
}
.text-and-video {
  position: relative;
}
@media (min-width: 768px) {
  .text-and-video_group {
    display: grid;
    grid-template-columns: 2fr 3fr;
  }
}
@media (min-width: 1024px) {
  .text-and-video_group {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .text-and-video_text {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    padding-left: 1rem;
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .text-and-video_text {
    padding-left: 3rem;
  }
}
.text-and-video_text_title {
  font-family: var(--headers-font);
  line-height: var(--header-line-height);
  font-size: var(--header-font-size);
  font-weight: var(--header-font-weight);
}
@media (min-width: 768px) {
  .text-and-video_text_title {
    font-size: var(--header-font-size-desktop);
  }
}
.text-and-video_text_title {
  background-color: var(--white-pure);
  background-image: linear-gradient(135deg, var(--brand-blue) 20%, var(--brand-deep-blue) 80%);
  background-size: 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1px solid transparent;
  margin: 0 0 1rem;
}
.text-and-video_text_content p {
  margin: 0 0 1rem;
  font-family: var(--regular-font);
  line-height: var(--regilar-line-height);
  font-size: var(--regular-font-size);
  font-weight: var(--regular-font-weight);
}
@media (min-width: 768px) {
  .text-and-video_text_content p {
    font-size: var(--regular-font-size-desktop);
  }
}
.text-and-video_video {
  margin-bottom: 2rem;
}
.text-and-video_video_wrapper {
  position: relative;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
}
.text-and-video_video video {
  border-radius: 1rem;
  display: block;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.text-and-video_video .play-btn {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  width: 3rem;
  cursor: pointer;
}
.text-and-video_video .play-btn path {
  fill: currentColor;
}
@media (min-width: 1024px) {
  .text-and-video_video .play-btn {
    width: 5rem;
  }
}
.text-and-video.catalog-version {
  background-color: #F5F8FC;
  padding: 4.5rem 0 3.7rem;
}/*# sourceMappingURL=styles.css.map */