.text-with-content {
  width: 100%;

  @media screen and (min-width: 769px) {
    width: 100dvw;
  }
}

.container-text-with-content {
  display: flex;
  width: 100%;
  padding: 48px 16px;
  flex-direction: column;
  align-items: center;
  gap: 24px;

  @media screen and (min-width: 769px) {
    padding: 48px 64px;
  }
}

.container-text-with-content .container-text-with-gallery_content-header {
  align-self: flex-start;
}

.container-text-with-content .container-text-with-gallery_content-header h2,
.container-text-with-content .container-text-with-gallery_content-header h2 p {
  color: var(--pdm-section-text-with-content-header-text-color, #fff);
  font-family: "Clio Ultra Black Ob", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 0;
  text-align: left;

  @media screen and (min-width: 769px) {
    font-size: 48px;
  }
}

.container-text-with-content .container-text-with-gallery_content-header h2 p strong {
  color: var(--pdm-section-text-with-content-header-text-strong-color, #ea1947);
  font-family: "Clio Ultra Black Ob", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 0;
  @media screen and (min-width: 769px) {
    font-size: 48px;
  }
}

.container-text-with-content .container-text-with-content_body {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  width: 100%;

  @media screen and (min-width: 769px) {
    gap: 40px;
    flex-direction: row;
  }
}

.container-text-with-content .container-text-with-content_body .pdm-content-with-slides-wrapper_content {
  border: 7px solid #fff;
  width: 100%;
  @media screen and (min-width: 769px) {
    width: 50%;
  }
}

.container-text-with-content .container-text-with-content_body .pdm-content-with-slides-wrapper_content video,
.container-text-with-content .container-text-with-content_body .pdm-content-with-slides-wrapper_content iframe {
  width: 100%;
  flex: 1 0 0;
  aspect-ratio: 656/429;
  object-fit: cover;
  height: 100%;
}

.container-text-with-content .container-text-with-content_body .pdm-content-with-slides-wrapper_content img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.container-text-with-content_body_text-and-button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex-shrink: 0;
  width: 100%;
  @media screen and (min-width: 769px) {
    width: 50%;
  }
}

.container-text-with-content_body_text-and-button .container-text-with-content_body_text ul {
  margin-bottom: 0;
  padding-left: 20px;
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;

  @media screen and (min-width: 769px) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 40px;
  }
}

.container-text-with-content_body_text-and-button .container-text-with-content_body_text li {
  position: relative;
  padding-left: 32px;
}

.container-text-with-content_body_text-and-button .container-text-with-content_body_text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17L4 12' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 24px 24px;
}

.container-text-with-content_body_text-and-button .container-text-with-content_body_text p,
.container-text-with-content_body_text-and-button .container-text-with-content_body_text li {
  color: var(--pdm-section-text-with-content-text-color, #fff);
  font-family: "Helvetica Neue LT Std Roman", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  width: 100%;
  @media screen and (min-width: 769px) {
    line-height: 20px;
    width: 301px;
  }
}

.container-text-with-content_body_text-and-button .container-text-with-content_body_text strong {
  color: var(--pdm-section-text-with-content-text-strong-color, #fff);
  font-family: "HelveticaNeue-bold", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}

.container-text-with-content_body_text-and-button .container-text-with-content_body_text-and-button_link {
  display: flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  width: 100%;
  border-radius: 8px;
  background: var(--pdm-section-text-with-content-button-background-color, #ea1947);
  text-decoration: none;
  color: var(--pdm-section-text-with-content-button-text-color, #fff);
  font-family: "Clio Ultra Black Ob", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  @media screen and (min-width: 769px) {
    width: fit-content;
  }
}