.pf-columns {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 992px) {
  .pf-columns {
    flex-direction: row;
  }
}
.pf-columns .swiper {
  width: 100%;
}
.pf-columns .page-width {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
}
@media only screen and (min-width: 992px) {
  .pf-columns .page-width {
    flex-direction: row;
    width: inherit;
  }
}
@media only screen and (max-width: 991.98px) {
  .pf-columns .page-width {
    width: 90%;
  }
}
.pf-columns .page-width.page-width-large {
  max-width: 1400px;
  width: 100%;
}
.pf-columns .background-media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Show mobile video on small screens */
}
.pf-columns .background-media picture {
  width: 100%;
  height: 100%;
}
.pf-columns .background-media .video-wrapper {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0; /* Ensure video is behind other content */
}
.pf-columns .background-media img {
  position: relative; /* Make sure the media fills the container */
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* Ensure the video/image covers the area properly */
}
.pf-columns .background-media video {
  position: absolute; /* Make sure the media fills the container */
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* Ensure the video/image covers the area properly */
}
.pf-columns .background-media .desktop-video {
  display: block; /* Only display on desktop */
}
.pf-columns .background-media .mobile-video {
  display: none; /* Hide on desktop */
}
@media only screen and (max-width: 991.98px) {
  .pf-columns .background-media .desktop-video {
    display: none; /* Hide desktop version */
  }
  .pf-columns .background-media .mobile-video {
    display: block; /* Show mobile version */
  }
}
@media only screen and (min-width: 992px) {
  .pf-columns a.column.transition {
    transition: width 0.8s ease;
    flex: auto;
  }
}
@media only screen and (min-width: 992px) {
  .pf-columns a.column.transition:hover {
    width: 30% !important;
  }
}
.pf-columns a.column.gradient .background-media:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  z-index: 2;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);
}
.pf-columns a.column .content .text-container .foreground-image img {
  transition: transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.pf-columns a.column .content .text-container .text p a {
  text-decoration: underline !important;
}
.pf-columns a.column:hover .heading .title {
  text-decoration: underline;
}
.pf-columns a.column:hover .heading .watch {
  text-decoration: none;
}
.pf-columns a.column:hover .heading .underline {
  text-decoration: none;
}
.pf-columns a.column:hover .content .text-container .foreground-image img {
  transform: scale(1.1);
}
.pf-columns .column {
  position: relative;
}
.pf-columns .column .background-media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.pf-columns .column .background-media picture {
  width: 100%;
  height: 100%;
}
.pf-columns .column .background-media .video-wrapper {
  height: 100%;
}
.pf-columns .column .background-media img, .pf-columns .column .background-media video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pf-columns .column .heading .watch {
  display: flex;
  align-items: center;
  margin: 0;
  gap: 10px;
  font-size: 14px !important;
  line-height: 1;
  text-decoration: none;
}
.pf-columns .column .heading .watch svg path {
  fill: #ffffff;
}
.pf-columns .column .heading .underline {
  text-decoration: underline;
}
.pf-columns .column .heading.heading-flex {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media only screen and (min-width: 768px) {
  .pf-columns .column .heading.heading-flex {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}
.pf-columns .column .play-icon {
  position: absolute;
  top: calc(50% - 10px);
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}
@media only screen and (max-width: 767.98px) {
  .pf-columns .column .play-icon {
    width: 50px;
    height: 50px;
  }
}
@media only screen and (max-width: 767.98px) {
  .pf-columns .column .play-icon svg {
    width: 50px;
    height: 50px;
  }
}
.pf-columns .column .content {
  display: block;
  position: relative;
  z-index: 3;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}
@media only screen and (min-width: 768px) {
  .pf-columns .column .content {
    display: flex;
  }
}
.pf-columns .column .content.text-alignment-left {
  text-align: left;
}
.pf-columns .column .content.text-alignment-center {
  text-align: center;
}
.pf-columns .column .content.text-alignment-right {
  text-align: right;
}
.pf-columns .column .content.horizontal-alignment-left {
  justify-content: flex-start;
}
.pf-columns .column .content.horizontal-alignment-center {
  justify-content: center;
}
.pf-columns .column .content.horizontal-alignment-right {
  justify-content: flex-end;
}
.pf-columns .column .content.vertical-alignment-top {
  align-items: flex-start;
}
.pf-columns .column .content.vertical-alignment-center {
  align-items: center;
}
.pf-columns .column .content.vertical-alignment-bottom {
  align-items: flex-end;
}
.pf-columns .column .content .relative {
  position: relative;
}
.pf-columns .column .content .foreground-image,
.pf-columns .column .content .foreground-mobile-image {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: auto;
}
.pf-columns .column .content .foreground-image img,
.pf-columns .column .content .foreground-mobile-image img {
  display: block;
  width: 100%;
  height: auto;
}
.pf-columns .column .content .caption {
  font-size: 12px;
  font-weight: 500;
  padding: 0 12px;
  margin-top: 20px;
}
.pf-columns .column .content .caption a {
  font-size: 12px !important;
  text-decoration: underline !important;
}
.pf-columns .column .content .caption a:visited {
  color: #1b1b1b;
}
.pf-columns .column .content .button {
  display: inline-block;
  margin-top: 30px;
}
.pf-columns .column .content .button svg {
  width: 7px;
  margin-left: 10px;
  vertical-align: middle;
}
.pf-columns .column .content .video-button {
  display: flex;
}
.pf-columns .column .content .video-button span {
  display: flex;
  margin-right: 6px;
}
.pf-columns .column .content .text-container {
  display: flex;
  flex-direction: column;
}
.pf-columns .column .content .button-container {
  width: 100%;
  display: block;
}
.pf-columns .column.height-ratio {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.pf-columns .column.height-ratio .background-media {
  position: relative;
  height: auto;
}
.pf-columns .column.height-ratio .content {
  position: absolute;
  top: 0;
  left: 0;
}
.pf-columns .column.height-fixed {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.pf-columns .text-container.foreground-video {
  max-width: 100% !important;
}

/* Prevent both images from showing initially */
.desktop-only {
  display: none !important;
}

.mobile-only {
  display: none !important;
}

@media (min-width: 920px) {
  .desktop-only {
    display: flex !important;
  }
}
@media (max-width: 919px) {
  .mobile-only {
    display: flex !important;
  }
}
@media (max-width: 919px) {
  .flip {
    flex-direction: column-reverse !important;
  }
}
