.page-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.page-banner-main-container {
  position: relative;
  z-index: 1;
}
.page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(24, 24, 27, 1) 0%,
    rgba(24, 24, 27, 0.5) 10%,
    rgba(24, 24, 27, 0) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-banner-overlay.video-overlay {
  background: linear-gradient(
      0deg,
      rgba(24, 24, 27, 0.1) 0%,
      rgba(24, 24, 27, 0.1) 100%
    ),
    linear-gradient(
      180deg,
      #18181b 50%,
      rgba(24, 24, 27, 0.5) 75%,
      #18181b 100%
    ),
    linear-gradient(
      260deg,
      #18181b 7.4%,
      rgba(24, 24, 27, 0.7) 22.54%,
      #18181b 57.4%
    ),
    linear-gradient(
      100deg,
      #18181b 7.4%,
      rgba(24, 24, 27, 0.7) 22.54%,
      #18181b 57.4%
    );
  background: linear-gradient(
      0deg,
      color(display-p3 0.0941 0.0941 0.1059 / 0.1) 0%,
      color(display-p3 0.0941 0.0941 0.1059 / 0.1) 100%
    ),
    linear-gradient(
      180deg,
      color(display-p3 0.0941 0.0941 0.1059 / 0) 50%,
      color(display-p3 0.0941 0.0941 0.1059 / 0.5) 75%,
      color(display-p3 0.0941 0.0941 0.1059) 100%
    ),
    linear-gradient(
      260deg,
      color(display-p3 0.0941 0.0941 0.1059) 7.4%,
      color(display-p3 0.0941 0.0941 0.1059 / 0.7) 22.54%,
      color(display-p3 0.0941 0.0941 0.1059 / 0) 57.4%
    ),
    linear-gradient(
      100deg,
      color(display-p3 0.0941 0.0941 0.1059) 7.4%,
      color(display-p3 0.0941 0.0941 0.1059 / 0.7) 22.54%,
      color(display-p3 0.0941 0.0941 0.1059 / 0) 57.4%
    );
}
.page-banner-overlay.video-overlay .page-banner-video-play {
  display: flex;
}
.page-banner-video-play {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.page-banner-video-play-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-image: url("../../images/video_play_wrapper.png");
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out;
}
.page-banner-video-play-icon {
  width: 36px;
  height: 36px;
  background-image: url("../../images/video_play.png");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease-in-out;
}
.page-banner-video-play:hover .page-banner-video-play-icon-wrapper {
  transform: scale(1.1);
}
.page-banner-video-play:hover .page-banner-video-play-icon {
  transform: scale(1.4);
}
.page-banner-video-play-text {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}
.page-image-banner {
  height: 400px;
}
.page-video-banner {
  height: 600px;
}
.page-banner-video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  object-fit: cover;
}
.page-banner-title {
  font-size: 40px;
  font-family: "Magnita";
  font-weight: 400;
  margin-bottom: 24px;
}
.page-banner-description {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
}
