:root {
  --red: #f85e5e;
  --pink: #ff79d8;
  --orange: #eba100;
  --blue: #307fde;
  --blue10: #307fde19;
  --lightblue: #4fa8e6;
  --green: #3dad45;
  --lightgreen: #4ab649;
  --step-0: clamp(0.94rem, calc(0.92rem + 0.08vw), 1rem);
  --step-1: clamp(1.06rem, calc(1.04rem + 0.09vw), 1.13rem);
  --step-2: clamp(1.19rem, calc(1.17rem + 0.1vw), 1.27rem);
  --step-3: clamp(1.34rem, calc(1.31rem + 0.11vw), 1.42rem);
  --step-4: clamp(1.5rem, calc(1.48rem + 0.13vw), 1.6rem);
  --step-5: clamp(1.69rem, calc(1.66rem + 0.14vw), 1.8rem);
}

html, body {
  scroll-padding-top: 75px;
}

@font-face {
  font-family: "jennasue";
  src: url("/styles/fonts/JennaSue.ttf");
}
@font-face {
  font-family: "poppins";
  src: url("/styles/fonts/Poppins-Regular.ttf");
}
@font-face {
  font-family: "poppins-b";
  src: url("/styles/fonts/Poppins-Bold.ttf");
}
a {
  text-decoration: none;
  cursor: pointer;
}

.phkl-onco-landing strong,
.phkl-onco-landing b {
  font-family: inherit;
}
.phkl-onco-landing h1 {
  font-size: calc(var(--step-5) * 1.2);
}
.phkl-onco-landing h2 {
  font-size: var(--step-5);
}
.phkl-onco-landing h3 {
  font-size: var(--step-3);
}
.phkl-onco-landing > div {
  max-width: 1920px;
  margin: auto;
}

header#phkl-onco-header {
  position: sticky;
  top: 0px;
  background: white;
  padding: var(--space-xs);
  z-index: 50;
  border-bottom: 5px solid #acc5fa;
}
header#phkl-onco-header .header-container {
  display: flex;
  align-items: center;
}
header#phkl-onco-header .header-container .mobile-burger {
  display: none;
}
header#phkl-onco-header .header-container .header-logo {
  flex: 0 0 12.5rem;
  margin-right: auto;
}
header#phkl-onco-header .header-container .header-logo img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header#phkl-onco-header .header-container .header-links {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-right: 1rem;
  padding-left: var(--space-s);
}
header#phkl-onco-header .header-container .header-links a {
  font-weight: bold;
  color: #060606;
  line-height: 1.15;
  white-space: nowrap;
  font-size: 14px;
}
header#phkl-onco-header .header-container .header-links a:hover {
  color: #08357c !important;
}
header#phkl-onco-header .header-container .header-links > a {
  text-align: center;
}
header#phkl-onco-header .header-container .header-links br {
  display: none;
}
@media (max-width: 1399.98px) {
  header#phkl-onco-header .header-container .header-links br {
    display: block;
  }
}
header#phkl-onco-header .header-container .whatsapp-btn {
  color: white;
  background: #3cad44;
  padding: var(--space-2xs) var(--space-s);
  border-radius: 10em;
  margin-right: 1rem;
  text-align: center;
  flex-shrink: 0;
}
header#phkl-onco-header .header-container .whatsapp-btn i,
header#phkl-onco-header .header-container .whatsapp-btn em,
header#phkl-onco-header .header-container .whatsapp-btn .fa {
  margin-right: 0.5rem;
}
header#phkl-onco-header .header-container .whatsapp-btn > span {
  white-space: nowrap;
}
@media (width < 1400px) {
  header#phkl-onco-header .header-container .whatsapp-btn {
    padding: 0.5em;
    text-align: center;
  }
  header#phkl-onco-header .header-container .whatsapp-btn i,
  header#phkl-onco-header .header-container .whatsapp-btn em,
  header#phkl-onco-header .header-container .whatsapp-btn .fa {
    width: 25px;
    height: 25px;
    display: block;
    margin-right: 0rem;
    padding-top: 4px;
  }
  header#phkl-onco-header .header-container .whatsapp-btn span {
    display: none;
  }
}
header#phkl-onco-header .header-container .search-btn {
  --btn-color: #707070;
  --test: #707070;
  display: flex;
  color: var(--btn-color);
  border-radius: 25px;
  border: 1px solid var(--btn-color);
  padding: 0.5em;
}
header#phkl-onco-header .header-container .search-btn i,
header#phkl-onco-header .header-container .search-btn em,
header#phkl-onco-header .header-container .search-btn .fa {
  display: block;
  width: 25px;
  height: 25px;
  text-align: center;
  padding-top: 4px;
}
header#phkl-onco-header .header-container .search-btn #desktop-search {
  border: none;
  margin: 0rem;
  height: 25px;
  width: 0px;
  padding-block: 0px;
  padding-inline: 0px;
  transition: all 0.3s ease;
}
header#phkl-onco-header .header-container .search-btn #desktop-search:focus, header#phkl-onco-header .header-container .search-btn #desktop-search:focus-within, header#phkl-onco-header .header-container .search-btn #desktop-search:focus-visible {
  outline: none;
}
header#phkl-onco-header .header-container .search-btn:hover #desktop-search {
  margin: 0rem 0.5rem;
  height: 25px;
  width: 150px;
  padding-block: 1px;
  padding-inline: 2px;
}
header#phkl-onco-header .header-container .mobile-sidebar {
  display: none;
}
@media (max-width: 991.98px) {
  header#phkl-onco-header .header-container .header-links,
  header#phkl-onco-header .header-container .whatsapp-btn,
  header#phkl-onco-header .header-container .search-btn {
    display: none;
  }
  header#phkl-onco-header .header-container .header-logo {
    height: 40px;
  }
  header#phkl-onco-header .header-container .mobile-burger {
    font-size: 1.5rem;
    display: block;
    margin-left: auto;
    font-weight: bold;
  }
  header#phkl-onco-header .header-container .mobile-sidebar {
    display: block;
    position: fixed;
    height: 100dvh;
    width: 0px;
    opacity: 0;
    visibility: hidden;
    top: 0px;
    right: 0px;
    background: #f3f3f3;
    padding: 3.5rem 1.5rem 1.5rem;
    transition: all 0.3s ease;
  }
  header#phkl-onco-header .header-container .mobile-sidebar .rounded-close-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
  }
  header#phkl-onco-header .header-container .mobile-sidebar .header-links,
  header#phkl-onco-header .header-container .mobile-sidebar .whatsapp-btn span {
    display: block;
  }
  header#phkl-onco-header .header-container .mobile-sidebar .search-btn {
    display: flex;
    gap: 0.25rem;
    padding: 0.5em 1em;
    width: 180px;
  }
  header#phkl-onco-header .header-container .mobile-sidebar .search-btn i,
  header#phkl-onco-header .header-container .mobile-sidebar .search-btn em,
  header#phkl-onco-header .header-container .mobile-sidebar .search-btn .fa {
    display: block;
    width: 25px;
    height: 25px;
    text-align: center;
    cursor: pointer;
    padding-top: 5px;
    aspect-ratio: 1/1;
  }
  header#phkl-onco-header .header-container .mobile-sidebar .search-btn #mobile-search {
    margin: 0rem 0.5rem;
    height: 25px;
    padding-block: 1px;
    padding-inline: 2px;
    border: none;
    margin: 0rem;
    height: 25px;
    width: 100%;
    background: transparent;
    padding-left: 0px;
    transition: all 0.3s ease;
  }
  header#phkl-onco-header .header-container .mobile-sidebar .search-btn #mobile-search:focus, header#phkl-onco-header .header-container .mobile-sidebar .search-btn #mobile-search:focus-within, header#phkl-onco-header .header-container .mobile-sidebar .search-btn #mobile-search:focus-visible {
    outline: none;
  }
  header#phkl-onco-header .header-container .mobile-sidebar .whatsapp-btn {
    display: flex;
    place-items: center;
    gap: 0.25rem;
    padding: 0.5em 1em;
    margin-bottom: 0.5rem;
    margin-right: 0rem;
    width: 180px;
    justify-content: normal;
  }
  header#phkl-onco-header .header-container .mobile-sidebar .header-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    align-items: flex-start;
    margin: 2rem 0rem;
    padding-left: 0px;
  }
  header#phkl-onco-header .header-container .mobile-sidebar .header-links a {
    text-align: left;
  }
  header#phkl-onco-header .header-container .mobile-sidebar .header-links br {
    display: none;
  }
  header#phkl-onco-header .header-container .mobile-sidebar .header-links > * {
    flex: 1 0 auto;
    background-color: white;
    padding: var(--space-m) var(--space-m);
    border-radius: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1019607843);
  }
  header#phkl-onco-header .header-container .mobile-sidebar .header-links > a {
    font-size: var(--step-1);
  }
  header#phkl-onco-header .header-container .mobile-sidebar.active {
    width: 100%;
    visibility: visible;
    opacity: 1;
    overflow-y: auto;
  }
}

.phkl-onco-landing {
  --step-5: clamp(1.69rem, calc(1.66rem + 0.14vw), 1.8rem);
  --bs-gutter: calc(var(--bs-gutter-x) * 0.5);
}
.phkl-onco-landing .landing-banner {
  display: grid;
  place-items: center;
}
.phkl-onco-landing .landing-banner > * {
  grid-area: 1/1;
}
.phkl-onco-landing .landing-banner .banner-img {
  width: 100%;
  height: auto;
}
.phkl-onco-landing .landing-banner .banner-title {
  font-size: calc(var(--step-5) * 1.2);
  font-weight: bold;
  color: black;
}
.phkl-onco-landing .landing-banner .banner-btn {
  display: block;
  margin-top: 2rem;
  padding: 1em 2em;
  font-weight: bold;
  color: var(--blue);
  background: white;
  border-radius: 10em;
  width: -moz-max-content;
  width: max-content;
  transition: all 0.3s ease;
}
.phkl-onco-landing .landing-banner .banner-btn:hover {
  background: var(--blue);
  color: white;
}
.phkl-onco-landing .landing-banner .mobile-talent {
  display: none;
  padding: 0px;
}
.phkl-onco-landing .landing-banner .mobile-talent img {
  width: 100%;
}
@media (max-width: 991.98px) {
  .phkl-onco-landing .landing-banner {
    background: var(--orange);
    padding: 0px;
  }
  .phkl-onco-landing .landing-banner .banner-text {
    padding: 2rem 2rem 0rem;
    text-align: center;
  }
  .phkl-onco-landing .landing-banner .banner-text .banner-btn {
    display: inline-block;
    margin-top: 1rem;
  }
  .phkl-onco-landing .landing-banner .banner-img {
    display: none;
  }
  .phkl-onco-landing .landing-banner .mobile-talent {
    display: block;
  }
}
.phkl-onco-landing .patient-navigator,
.phkl-onco-landing .treatment,
.phkl-onco-landing .insurance-support {
  padding: 50px 0px;
}
.phkl-onco-landing .patient-navigator .big-card,
.phkl-onco-landing .treatment .big-card,
.phkl-onco-landing .insurance-support .big-card {
  background: var(--lightblue);
  padding-right: 0px;
  border-radius: 1.25rem;
}
.phkl-onco-landing .patient-navigator .big-card .content-section,
.phkl-onco-landing .treatment .big-card .content-section,
.phkl-onco-landing .insurance-support .big-card .content-section {
  color: white;
  padding: 20% 0rem 20% 2rem;
}
.phkl-onco-landing .patient-navigator .big-card .content-section .jenna-title,
.phkl-onco-landing .treatment .big-card .content-section .jenna-title,
.phkl-onco-landing .insurance-support .big-card .content-section .jenna-title {
  font-size: calc(var(--step-5) * 1.2);
  font-weight: bold;
  color: inherit;
  margin-bottom: var(--space-xs);
}
.phkl-onco-landing .patient-navigator .big-card .content-section .section-title,
.phkl-onco-landing .treatment .big-card .content-section .section-title,
.phkl-onco-landing .insurance-support .big-card .content-section .section-title {
  font-size: var(--step-3);
  color: inherit;
}
.phkl-onco-landing .patient-navigator .big-card .content-section .sub-title,
.phkl-onco-landing .treatment .big-card .content-section .sub-title,
.phkl-onco-landing .insurance-support .big-card .content-section .sub-title {
  margin: 1rem 0rem;
}
.phkl-onco-landing .patient-navigator .big-card .content-section .read-more,
.phkl-onco-landing .treatment .big-card .content-section .read-more,
.phkl-onco-landing .insurance-support .big-card .content-section .read-more {
  margin-top: 2rem;
  font-weight: bold;
  color: inherit;
}
.phkl-onco-landing .patient-navigator .big-card .talent-img,
.phkl-onco-landing .treatment .big-card .talent-img,
.phkl-onco-landing .insurance-support .big-card .talent-img {
  width: 100%;
  transform-origin: bottom right;
  transform: scale(1.2);
}
@media (max-width: 991.98px) {
  .phkl-onco-landing .patient-navigator,
  .phkl-onco-landing .treatment,
  .phkl-onco-landing .insurance-support {
    padding: 30px 15px;
  }
  .phkl-onco-landing .patient-navigator .big-card,
  .phkl-onco-landing .treatment .big-card,
  .phkl-onco-landing .insurance-support .big-card {
    padding-left: 0px;
    overflow: hidden;
  }
  .phkl-onco-landing .patient-navigator .big-card .content-section,
  .phkl-onco-landing .treatment .big-card .content-section,
  .phkl-onco-landing .insurance-support .big-card .content-section {
    padding: 1.5rem 1.5rem !important;
  }
  .phkl-onco-landing .patient-navigator .big-card .talent-img,
  .phkl-onco-landing .treatment .big-card .talent-img,
  .phkl-onco-landing .insurance-support .big-card .talent-img {
    transform: scale(1) !important;
  }
}
@media (max-width: 991.98px) {
  .phkl-onco-landing .patient-navigator .big-card .content-section {
    padding-bottom: 0rem !important;
  }
}
.phkl-onco-landing .treatment {
  padding-top: 0px;
}
.phkl-onco-landing .treatment .big-card {
  background: var(--green);
  padding-left: 0px;
}
.phkl-onco-landing .treatment .big-card .content-section {
  padding: 10% 2rem 10% 0rem;
}
.phkl-onco-landing .treatment .big-card .talent-img {
  transform-origin: bottom left;
  transform: scale(1.05);
}
@media screen and (width >= 992px) {
  .phkl-onco-landing .screening-davinci .container {
    --bs-gutter-x: 1.5rem;
  }
}
.phkl-onco-landing .screening-davinci .small-card {
  padding-bottom: 1.25rem;
}
.phkl-onco-landing .screening-davinci .small-card .content-section {
  padding: 1rem 0.25rem;
  color: white;
}
.phkl-onco-landing .screening-davinci .small-card .content-section h2 {
  font-weight: bold;
  margin-bottom: 1rem;
  color: inherit;
  font-size: var(--step-3);
}
.phkl-onco-landing .screening-davinci .small-card .content-section .read-more {
  background: white;
  width: -moz-max-content;
  width: max-content;
  color: var(--blue);
  border: var(--blue);
  padding: 0.5em 1em;
  line-height: 1em;
  border-radius: 10em;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
}
.phkl-onco-landing .screening-davinci .small-card .content-section .read-more .right-arrow {
  display: none;
}
.phkl-onco-landing .screening-davinci .small-card .content-section .read-more:hover {
  background: var(--blue);
  color: white;
}
.phkl-onco-landing .screening-davinci .small-card .text-section {
  align-self: center;
}
.phkl-onco-landing .screening-davinci .small-card .img-section {
  align-self: flex-end;
  text-align: right;
  padding-top: 1rem;
}
.phkl-onco-landing .screening-davinci .small-card img {
  width: 100%;
}
.phkl-onco-landing .screening-davinci .small-card .pink {
  background: var(--pink);
  border-radius: 0.75rem;
}
.phkl-onco-landing .screening-davinci .small-card .red {
  background: var(--red);
  border-radius: 0.75rem;
}
.phkl-onco-landing .screening-davinci .small-card .red .img-section img {
  transform-origin: bottom right;
  transform: scale(1.2);
}
.phkl-onco-landing .screening-davinci .small-card .yellow {
  background: #ffbc27;
  border-radius: 0.75rem;
}
.phkl-onco-landing .screening-davinci .small-card .yellow .img-section img {
  transform-origin: bottom right;
  transform: scale(1.2);
}
.phkl-onco-landing .screening-davinci .small-card .green {
  background: #6bc796;
  border-radius: 0.75rem;
}
.phkl-onco-landing .screening-davinci .small-card:nth-child(odd) {
  padding-left: 0px;
}
.phkl-onco-landing .screening-davinci .small-card:nth-child(even) {
  padding-right: 0px;
}
@media (max-width: 991.98px) {
  .phkl-onco-landing .screening-davinci .small-card {
    padding: 0rem 0.5rem 1.5rem 0.5rem !important;
  }
  .phkl-onco-landing .screening-davinci .small-card .content-section {
    padding: 0rem;
    justify-content: center;
  }
  .phkl-onco-landing .screening-davinci .small-card .content-section h2 {
    margin-bottom: 1rem;
  }
  .phkl-onco-landing .screening-davinci .small-card .content-section .read-more {
    margin-top: unset;
  }
  .phkl-onco-landing .screening-davinci .small-card .pink img, .phkl-onco-landing .screening-davinci .small-card .red img {
    transform: unset !important;
  }
}
.phkl-onco-landing .messages-section {
  --pt: 250px;
  padding-top: 50px;
  margin-top: 50px;
  margin-bottom: 30px;
  background: url("/images/pantaihospitalmalaysiakllibraries/onco-campaign/memo-hand-opacity.webp");
  background-repeat: no-repeat;
  background-position: center top;
  position: relative;
  padding-top: var(--pt);
}
.phkl-onco-landing .messages-section .center-content {
  text-align: center;
}
.phkl-onco-landing .messages-section .center-content .middle-title {
  color: var(--blue);
  font-weight: bold;
}
.phkl-onco-landing .messages-section .center-content .middle-memo {
  margin: 1rem 0rem 1rem;
  width: min(300px, 100%);
}
.phkl-onco-landing .messages-section .center-content .memo-input {
  width: 100%;
  height: 100px;
  padding: 0.5rem 1rem;
  text-align: center;
  border-radius: 0.5rem;
  resize: none;
}
.phkl-onco-landing .messages-section .message-btn {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.phkl-onco-landing .messages-section .message-btn > * {
  width: 225px;
  text-align: center;
}
.phkl-onco-landing .messages-section .message-btn .send-btn {
  padding: 1em 2em;
  font-weight: bold;
  color: white;
  background: var(--blue);
  border-radius: 10em;
  text-transform: uppercase;
  border: 2px solid var(--blue);
  transition: all 0.3s ease;
}
.phkl-onco-landing .messages-section .message-btn .view-other-btn {
  font-weight: bold;
  padding: 1em 1em;
  border: 2px solid var(--blue);
  background: white;
  border-radius: 10em;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  .phkl-onco-landing .messages-section .message-btn {
    flex-direction: column;
    align-items: center;
  }
}
.phkl-onco-landing .messages-section #memo-backdrop {
  display: none;
  position: fixed;
  inset: 0px;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
}
.phkl-onco-landing .messages-section .all-memos .item-container {
  position: absolute;
  top: 0px;
  height: 100%;
  width: 100%;
}
.phkl-onco-landing .messages-section .all-memos .item-container .message-item {
  position: absolute;
  width: 300px;
  height: auto;
  transition: all 0.5s ease;
}
.phkl-onco-landing .messages-section .all-memos .item-container .message-item img {
  width: 100%;
  height: 100%;
}
.phkl-onco-landing .messages-section .all-memos .item-container .message-item .message-text {
  position: absolute;
  color: #00003a;
  width: 80%;
  text-align: center;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  line-height: 1.25em;
  font-family: "jennasue";
}
.phkl-onco-landing .messages-section .all-memos .item-container .message-item.active {
  position: fixed;
  z-index: 101;
}
@media (max-width: 767.98px) {
  .phkl-onco-landing .messages-section .all-memos .item-container .message-item {
    width: 250px;
  }
  .phkl-onco-landing .messages-section .all-memos .item-container .message-item .message-text {
    font-size: 1.75rem;
  }
}
.phkl-onco-landing .messages-section .all-memos .item-container.one {
  top: calc(0px - var(--pt));
  left: 0px;
}
.phkl-onco-landing .messages-section .all-memos .item-container.one .message-text {
  top: 20%;
  left: 30px;
  transform: rotateZ(5.5deg);
  z-index: 1;
}
.phkl-onco-landing .messages-section .all-memos .item-container.two {
  top: calc(230px - var(--pt));
  left: -25px;
}
.phkl-onco-landing .messages-section .all-memos .item-container.two .message-text {
  left: 30px;
  top: 20%;
  transform: rotateZ(-4.5deg);
  z-index: 2;
}
.phkl-onco-landing .messages-section .all-memos .item-container.three {
  top: calc(470px - var(--pt));
  left: 0px;
}
.phkl-onco-landing .messages-section .all-memos .item-container.three .message-text {
  left: 5%;
  top: 50%;
  transform: rotateZ(14deg) translateY(-50%);
  transform-origin: center;
  z-index: 1;
}
.phkl-onco-landing .messages-section .all-memos .item-container.four {
  top: calc(0px - var(--pt));
  right: 25px;
}
.phkl-onco-landing .messages-section .all-memos .item-container.four .message-text {
  width: 70%;
  top: 20%;
  left: 50px;
  transform: rotateZ(-4.5deg);
  z-index: 1;
}
.phkl-onco-landing .messages-section .all-memos .item-container.five {
  top: calc(230px - var(--pt));
  right: -25px;
}
.phkl-onco-landing .messages-section .all-memos .item-container.five .message-text {
  left: 30px;
  top: 20%;
  transform: rotateZ(-4.5deg);
  z-index: 2;
}
.phkl-onco-landing .messages-section .all-memos .item-container.six {
  top: calc(470px - var(--pt));
  right: 0px;
}
.phkl-onco-landing .messages-section .all-memos .item-container.six .message-text {
  left: 30px;
  bottom: 20%;
  transform: rotateZ(-4.5deg);
  z-index: 1;
}
.phkl-onco-landing .messages-section + .patient-journey {
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}
@media (max-width: 991.98px) {
  .phkl-onco-landing .messages-section {
    --pt: 0px;
    background: none;
  }
  .phkl-onco-landing .messages-section .center-content {
    margin-top: 2rem;
  }
  .phkl-onco-landing .messages-section .center-content .middle-title {
    font-size: var(--step-3);
    margin-bottom: 1rem;
  }
  .phkl-onco-landing .messages-section .center-content .middle-memo {
    display: none;
  }
  .phkl-onco-landing .messages-section .all-memos {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: auto;
    margin-left: -15px;
    margin-right: -15px;
    padding-bottom: 30px;
  }
  .phkl-onco-landing .messages-section .all-memos .item-container {
    position: relative;
    inset: 0px !important;
  }
  .phkl-onco-landing .messages-section .all-memos .item-container .message-item {
    position: relative;
  }
}
.phkl-onco-landing .voice-message-section {
  --filter-green: invert(73%) sepia(65%) saturate(361%) hue-rotate(53deg) brightness(97%) contrast(88%);
  --filter-orange: invert(76%) sepia(77%) saturate(896%) hue-rotate(335deg) brightness(103%) contrast(101%);
  --filter-blue: invert(54%) sepia(49%) saturate(1941%) hue-rotate(155deg) brightness(95%) contrast(101%);
  --filter-pink: invert(66%) sepia(60%) saturate(872%) hue-rotate(282deg) brightness(100%) contrast(101%);
  margin: 3rem 0rem 2rem;
}
.phkl-onco-landing .voice-message-section .audio-item-container {
  display: flex;
  gap: 2rem;
  padding-bottom: 1.5rem;
}
.phkl-onco-landing .voice-message-section .audio-item-container .audio-item {
  position: relative;
  padding: 1.5rem 1.5rem 2rem;
  background: white;
  border-radius: 0.5rem;
  cursor: pointer;
}
.phkl-onco-landing .voice-message-section .audio-item-container .audio-item .audio-wave {
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}
.phkl-onco-landing .voice-message-section .audio-item-container .audio-item .item-text {
  margin-bottom: 0rem;
  font-family: "jennasue";
  font-size: calc(var(--step-5) * 1.1);
  line-height: 1;
}
.phkl-onco-landing .voice-message-section .audio-item-container .audio-item:hover .play-btn, .phkl-onco-landing .voice-message-section .audio-item-container .audio-item.playing .play-btn {
  background: #eee;
}
.phkl-onco-landing .voice-message-section .audio-item-container .audio-item .play-btn {
  --triangle-size: 15px;
  position: absolute;
  display: grid;
  place-items: center;
  padding: 1.25em;
  bottom: -1rem;
  right: -1rem;
  border-radius: 50%;
  background: white;
  box-shadow: 2px 2px 12px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.phkl-onco-landing .voice-message-section .audio-item-container .audio-item .play-btn::before {
  content: "";
  display: inline-block;
  transform: translateX(calc(var(--triangle-size) / 4));
  width: 0;
  height: 0;
  border-top: var(--triangle-size) solid transparent;
  border-left: calc(var(--triangle-size) * 2) solid #707070;
  border-bottom: var(--triangle-size) solid transparent;
}
.phkl-onco-landing .voice-message-section .audio-item-container .audio-item:nth-child(4n+1) {
  background: #e7f8e0;
}
.phkl-onco-landing .voice-message-section .audio-item-container .audio-item:nth-child(4n+1) .audio-wave {
  filter: var(--filter-green);
}
.phkl-onco-landing .voice-message-section .audio-item-container .audio-item:nth-child(4n+1) .play-btn::before {
  border-left-color: #89dc65;
}
.phkl-onco-landing .voice-message-section .audio-item-container .audio-item:nth-child(4n+2) {
  background: #fff2d4;
}
.phkl-onco-landing .voice-message-section .audio-item-container .audio-item:nth-child(4n+2) .audio-wave {
  filter: var(--filter-orange);
}
.phkl-onco-landing .voice-message-section .audio-item-container .audio-item:nth-child(4n+2) .play-btn::before {
  border-left-color: #ffbc29;
}
.phkl-onco-landing .voice-message-section .audio-item-container .audio-item:nth-child(4n+3) {
  background: #ccf0fb;
}
.phkl-onco-landing .voice-message-section .audio-item-container .audio-item:nth-child(4n+3) .audio-wave {
  filter: var(--filter-blue);
}
.phkl-onco-landing .voice-message-section .audio-item-container .audio-item:nth-child(4n+3) .play-btn::before {
  border-left-color: #00b4eb;
}
.phkl-onco-landing .voice-message-section .audio-item-container .audio-item:nth-child(4n+4) {
  background: #ffe4f7;
}
.phkl-onco-landing .voice-message-section .audio-item-container .audio-item:nth-child(4n+4) .audio-wave {
  filter: var(--filter-pink);
}
.phkl-onco-landing .voice-message-section .audio-item-container .audio-item:nth-child(4n+4) .play-btn::before {
  border-left-color: #fe79d7;
}
@media (max-width: 1199.98px) {
  .phkl-onco-landing .voice-message-section .audio-item-container {
    overflow-x: auto;
  }
  .phkl-onco-landing .voice-message-section .audio-item-container .audio-item {
    min-width: 200px;
  }
}
.phkl-onco-landing .voice-message-section audio {
  display: none;
}
.phkl-onco-landing .insurance-support .big-card {
  background: var(--blue);
}
.phkl-onco-landing .insurance-support .big-card .content-section {
  padding: 1.5rem 0rem 1.5rem 2rem;
}
.phkl-onco-landing .insurance-support .big-card .talent-img {
  transform: scale(1.05);
}
@media (max-width: 991.98px) {
  .phkl-onco-landing .insurance-support {
    padding: 10px 15px 40px;
  }
}
.phkl-onco-landing .survivorship p,
.phkl-onco-landing .survivorship h2 {
  color: var(--blue);
  font-weight: bold;
}
.phkl-onco-landing .survivorship .read-more {
  color: var(--blue);
  justify-content: end;
}
@media (max-width: 767.98px) {
  .phkl-onco-landing .survivorship .read-more {
    margin-top: 1rem;
  }
}
.phkl-onco-landing .survivorship .card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.phkl-onco-landing .survivorship .card-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid;
}
.phkl-onco-landing .survivorship .card-item .card-img {
  width: 100%;
  height: 500px;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.phkl-onco-landing .survivorship .card-item .hover-card {
  --title-default-size: 1rem;
  --padding-y: 1.5rem;
  position: absolute;
  display: flex;
  flex-direction: column;
  color: black;
  background: white;
  width: 100%;
  padding: var(--padding-y) 1rem;
  text-align: center;
  top: unset;
  bottom: 0px;
  height: 100px;
  justify-content: center;
  z-index: 2;
  border-top: 6px solid var(--blue);
  transition: all 0.3s ease-out;
}
.phkl-onco-landing .survivorship .card-item .hover-card h3,
.phkl-onco-landing .survivorship .card-item .hover-card p,
.phkl-onco-landing .survivorship .card-item .hover-card .read-more {
  transition: all 0.3s ease-out;
}
.phkl-onco-landing .survivorship .card-item .hover-card h3 {
  font-size: var(--step-0);
  font-weight: bold;
  margin-bottom: 0rem;
  align-self: center;
}
.phkl-onco-landing .survivorship .card-item .hover-card h3 br {
  display: none;
}
.phkl-onco-landing .survivorship .card-item .hover-card p,
.phkl-onco-landing .survivorship .card-item .hover-card .read-more {
  display: none;
}
.phkl-onco-landing .survivorship .card-item:hover .hover-card {
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  border-top: none;
}
.phkl-onco-landing .survivorship .card-item:hover .hover-card h3 {
  font-size: var(--step-3);
  margin-bottom: 1.5rem;
}
.phkl-onco-landing .survivorship .card-item:hover .hover-card h3 br {
  display: block;
}
.phkl-onco-landing .survivorship .card-item:hover .hover-card h3,
.phkl-onco-landing .survivorship .card-item:hover .hover-card p,
.phkl-onco-landing .survivorship .card-item:hover .hover-card .read-more {
  color: white;
  justify-content: center;
}
.phkl-onco-landing .survivorship .card-item:hover .hover-card p {
  display: block;
}
.phkl-onco-landing .survivorship .card-item:hover .hover-card .read-more {
  margin-top: auto;
  display: flex;
  line-height: 1em;
}
@media (max-width: 575.98px) {
  .phkl-onco-landing .survivorship .card-item {
    margin: 1rem 0rem 1rem;
  }
  .phkl-onco-landing .survivorship .card-item .hover-card {
    padding: 3rem 2rem;
  }
}
@media (max-width: 767.98px) {
  .phkl-onco-landing .survivorship .main-survivorship-swiper {
    margin: 0px 0.5rem;
  }
}
.phkl-onco-landing .why-choose-us {
  position: relative;
  padding-top: 50px;
}
.phkl-onco-landing .why-choose-us .title p,
.phkl-onco-landing .why-choose-us .title h2,
.phkl-onco-landing .why-choose-us .title .read-more {
  color: var(--blue);
  font-weight: bold;
}
.phkl-onco-landing .why-choose-us .wcu-grid {
  --grid: 6;
  display: grid;
  grid-template-columns: repeat(var(--grid), 1fr);
  padding: 1rem 0rem;
  gap: 1rem;
}
.phkl-onco-landing .why-choose-us .wcu-grid .wcu-item {
  text-align: center;
}
.phkl-onco-landing .why-choose-us .wcu-grid .wcu-item img {
  margin-bottom: 1rem;
}
.phkl-onco-landing .why-choose-us .wcu-grid .wcu-item h3 {
  color: #060606;
  margin-bottom: 0.25rem;
}
.phkl-onco-landing .why-choose-us .wcu-grid .wcu-item h3,
.phkl-onco-landing .why-choose-us .wcu-grid .wcu-item p {
  font-weight: bold;
}
.phkl-onco-landing .why-choose-us .wcu-grid .wcu-item p {
  color: #707070;
  line-height: 1.25em;
}
@media (max-width: 991.98px) {
  .phkl-onco-landing .why-choose-us .wcu-grid {
    --grid: 3;
  }
}
@media (max-width: 575.98px) {
  .phkl-onco-landing .why-choose-us .wcu-grid img {
    height: 60px;
    width: auto;
  }
}
@media (max-width: 767.98px) {
  .phkl-onco-landing .why-choose-us {
    padding-top: 40px;
  }
  .phkl-onco-landing .why-choose-us .wcu-slider {
    margin: 0px 0.5rem;
  }
  .phkl-onco-landing .why-choose-us .read-more {
    color: var(--blue);
    margin-bottom: 2rem !important;
  }
}
@media screen and (width >= 992px) {
  .phkl-onco-landing .patient-journey .container {
    --bs-gutter-x: 0rem;
  }
}
.phkl-onco-landing .patient-journey .main-wcu-slider {
  position: relative;
}
.phkl-onco-landing .patient-journey .main-wcu-slider .wcu-slider {
  padding: 5px;
}
.phkl-onco-landing .patient-journey .main-wcu-slider .wcu-slider .message-item {
  position: relative;
  cursor: pointer;
}
.phkl-onco-landing .patient-journey .main-wcu-slider .wcu-slider .message-item .video-container {
  position: relative;
  display: grid;
  place-items: center;
}
.phkl-onco-landing .patient-journey .main-wcu-slider .wcu-slider .message-item .video-container > * {
  grid-area: 1/1;
}
.phkl-onco-landing .patient-journey .main-wcu-slider .wcu-slider .message-item .video-container .video-thumbnail {
  width: 100%;
  border-radius: 0.5rem;
}
.phkl-onco-landing .patient-journey .main-wcu-slider .wcu-slider .message-item .video-container .yt-play {
  width: 70px;
  height: auto;
}
.phkl-onco-landing .patient-journey .main-wcu-slider .wcu-slider .message-item .quotation {
  --size: 60px;
  font-size: calc(var(--size));
  height: calc(var(--size) / 2);
  line-height: 1em;
}
.phkl-onco-landing .patient-journey .main-wcu-slider .wcu-slider .message-item .message {
  margin: 1rem 0rem 2rem;
}
.phkl-onco-landing .patient-journey .main-wcu-slider .wcu-slider .message-item .signature {
  font-family: "jennasue";
  font-size: 3rem;
  line-height: 1em;
}
.phkl-onco-landing .patient-journey .main-wcu-slider .wcu-slider .message-item:nth-child(3n+1) .quotation {
  color: var(--green);
}
.phkl-onco-landing .patient-journey .main-wcu-slider .wcu-slider .message-item:nth-child(3n+2) .quotation {
  color: var(--orange);
}
.phkl-onco-landing .patient-journey .main-wcu-slider .wcu-slider .message-item:nth-child(3n+3) .quotation {
  color: var(--blue);
}
.phkl-onco-landing .patient-journey .main-wcu-slider .wcu-slider .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 0px);
}
.phkl-onco-landing .patient-journey .main-wcu-slider .wcu-slider .swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 0px);
}
@media (max-width: 767.98px) {
  .phkl-onco-landing .patient-journey .wcu-slider {
    margin: 0px 0.5rem;
  }
}
.phkl-onco-landing .cancer-form .formCounter {
  margin-top: 1.5rem;
}
.phkl-onco-landing .cancer-form .formCounter .counterText {
  font-weight: bold;
  font-size: 1.25rem;
}
.phkl-onco-landing .cancer-form .formCounter .counterFillContainer .conter-fill {
  height: 35px;
  border-radius: 5px;
  padding: 1px;
  border: 1px solid #707070;
  margin: 0.25rem 0rem;
}
.phkl-onco-landing .cancer-form .formCounter .counterFillContainer .conter-fill .counter-bar {
  --width: 0%;
  height: 100%;
  width: var(--width);
  border-radius: 4px;
  background: var(--pantai-blue);
}
.phkl-onco-landing .cancer-form .formCounter .counterFillContainer .counter-progress {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}
.phkl-onco-landing .make-apt {
  position: relative;
  padding-bottom: 3rem;
  padding-top: 40px;
}
.phkl-onco-landing .make-apt h2 {
  font-weight: bold;
  color: var(--blue);
  margin-bottom: 2rem;
  text-align: center;
}
.phkl-onco-landing .make-apt .apt-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.phkl-onco-landing .make-apt .apt-container .apt-item-container {
  --default: var(--blue);
  --active: white;
  width: 250px;
  cursor: pointer;
  background: white;
  border-radius: 0.5rem;
  padding: 0.75rem;
  transition: all 0.3s ease;
  border: 2px solid;
}
.phkl-onco-landing .make-apt .apt-container .apt-item-container .apt-item {
  border: 2px solid var(--active);
  border-radius: 0.375rem;
  padding: 0.75rem;
  text-align: center;
}
.phkl-onco-landing .make-apt .apt-container .apt-item-container .apt-item img {
  height: 125px;
  width: auto;
  filter: invert(48%) sepia(86%) saturate(2200%) hue-rotate(194deg) brightness(87%) contrast(99%);
}
.phkl-onco-landing .make-apt .apt-container .apt-item-container .apt-item p {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: var(--default);
  line-height: 1.25;
  transition: all 0.3s ease;
  height: 2em;
}
.phkl-onco-landing .make-apt .apt-container .apt-item-container:hover {
  background: var(--blue10);
}
.phkl-onco-landing .make-apt .apt-container .apt-item-container.active {
  background: var(--blue);
}
.phkl-onco-landing .make-apt .apt-container .apt-item-container.active .apt-item img {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(109deg) brightness(300%) contrast(107%);
}
.phkl-onco-landing .make-apt .apt-container .apt-item-container.active .apt-item p {
  color: var(--active);
}
.phkl-onco-landing .make-apt .make-apt-btn {
  display: inline-block;
  width: -moz-max-content;
  width: max-content;
  font-weight: bold;
  margin-top: 2rem;
  padding: 1em 1.5em;
  background: var(--blue);
  color: white;
  border-radius: 5em;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .phkl-onco-landing .make-apt .apt-container {
    gap: 1rem;
  }
  .phkl-onco-landing .make-apt .apt-container .apt-item-container {
    width: 200px;
  }
  .phkl-onco-landing .make-apt .apt-container .apt-item-container .apt-item img {
    height: 100px;
  }
}
@media (max-width: 767.98px) {
  .phkl-onco-landing .make-apt .apt-container {
    flex-direction: column;
    gap: 1rem;
  }
  .phkl-onco-landing .make-apt .apt-container .apt-item-container {
    width: 100%;
  }
  .phkl-onco-landing .make-apt .apt-container .apt-item-container .apt-item {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .phkl-onco-landing .make-apt .apt-container .apt-item-container .apt-item img {
    height: 3rem;
    width: 3rem;
    -o-object-fit: contain;
       object-fit: contain;
    margin-right: 1rem;
    align-self: flex-end;
  }
  .phkl-onco-landing .make-apt .apt-container .apt-item-container .apt-item P {
    margin: 0px;
    width: 130px;
    text-align: left;
    height: unset;
  }
}
.phkl-onco-landing.cancer {
  --page-mt: 3rem;
  padding-top: var(--page-mt);
}
.phkl-onco-landing .subpage-title {
  color: var(--blue);
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.phkl-onco-landing .cancer-selector {
  padding-bottom: 3rem;
}
.phkl-onco-landing .cancer-selector .onco-selector {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}
.phkl-onco-landing .cancer-selector .onco-selector .selector-item {
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  background: white;
  cursor: pointer;
  box-shadow: 2px 2px 12px 0px rgba(0, 0, 0, 0.5);
}
.phkl-onco-landing .cancer-selector .onco-selector .selector-item .item-img {
  flex: 2;
  position: relative;
  isolation: isolate;
  flex: 0 0 25%;
}
.phkl-onco-landing .cancer-selector .onco-selector .selector-item .item-img .full {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  z-index: 1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  padding: var(--space-xs);
  background: var(--pantai-blue);
}
.phkl-onco-landing .cancer-selector .onco-selector .selector-item .item-img .icon {
  position: absolute;
  bottom: 5px;
  right: 5px;
  z-index: 2;
  width: 65px;
  height: 65px;
}
.phkl-onco-landing .cancer-selector .onco-selector .selector-item .item-desc {
  flex: 3;
  padding: 1rem;
  align-self: center;
}
.phkl-onco-landing .cancer-selector .onco-selector .selector-item .item-desc h3 {
  font-weight: bold;
  margin-bottom: var(--space-3xs);
}
.phkl-onco-landing .cancer-selector .onco-selector .selector-item .item-desc p {
  color: #6d6f71;
  font-size: var(--step--1);
  margin-bottom: var(--space-2xs);
}
.phkl-onco-landing .cancer-selector .onco-selector .selector-item .item-desc .read-more {
  color: var(--blue);
  font-size: var(--step--1);
}
@media (max-width: 767.98px) {
  .phkl-onco-landing .cancer-selector .onco-selector {
    grid-template-columns: repeat(2, 1fr);
  }
  .phkl-onco-landing .cancer-selector .onco-selector .selector-item {
    flex-direction: column;
    height: unset;
    background: var(--pantai-blue);
    text-align: center;
  }
  .phkl-onco-landing .cancer-selector .onco-selector .selector-item .item-img {
    background: var(--pantai-blue);
    text-align: center;
  }
  .phkl-onco-landing .cancer-selector .onco-selector .selector-item .item-img .full {
    width: 80%;
  }
  .phkl-onco-landing .cancer-selector .onco-selector .selector-item .item-desc {
    padding-top: 0px;
  }
  .phkl-onco-landing .cancer-selector .onco-selector .selector-item .item-desc h3 {
    font-size: var(--step-0);
    color: white;
  }
  .phkl-onco-landing .cancer-selector .onco-selector .selector-item .item-desc p,
  .phkl-onco-landing .cancer-selector .onco-selector .selector-item .item-desc .read-more {
    display: none;
  }
}
.phkl-onco-landing .cancer-banner {
  display: grid;
  align-items: center;
  margin-bottom: 2rem;
}
.phkl-onco-landing .cancer-banner > * {
  grid-area: 1/1;
}
.phkl-onco-landing .cancer-banner .banner-img {
  width: 100%;
  z-index: 1;
  border-radius: 1rem;
}
.phkl-onco-landing .cancer-banner .banner-title {
  color: white;
  font-weight: bold;
  height: -moz-max-content;
  height: max-content;
  margin-bottom: 0rem;
  z-index: 2;
  padding-left: 10%;
  font-size: calc(var(--step-5) * 1.2);
}
.phkl-onco-landing .cancer-banner .banner-title br {
  display: none;
}
@media (max-width: 767.98px) {
  .phkl-onco-landing .cancer-banner {
    margin-top: calc(var(--page-mt) * -1);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
    font-size: calc(var(--step-5) * 1);
  }
  .phkl-onco-landing .cancer-banner .banner-title {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .phkl-onco-landing .cancer-banner .banner-title br {
    display: block;
  }
  .phkl-onco-landing .cancer-banner .banner-img {
    border-radius: 0px;
  }
  .phkl-onco-landing .cancer-banner.bone-marrow {
    display: block;
    background: var(--blue);
  }
  .phkl-onco-landing .cancer-banner.bone-marrow .banner-title {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .phkl-onco-landing .cancer-banner.bone-marrow .banner-img {
    width: calc(100% + 100px);
    max-width: unset;
    transform: translateX(-100px);
  }
}
.phkl-onco-landing .cancer-desc-container [data-cancer] {
  padding-bottom: 3rem;
}
.phkl-onco-landing .cancer-desc-container [data-cancer] h2 {
  font-weight: bold;
  color: var(--blue);
}
.phkl-onco-landing .cancer-desc-container [data-cancer] p:last-child {
  margin-bottom: 0rem;
}
.phkl-onco-landing .cancer-desc-container [data-cancer] hr {
  margin: 1.5rem 0rem;
  border-top: 3px solid var(--lightblue);
}
.phkl-onco-landing .cancer-desc-container [data-cancer] .make-appointment {
  margin-top: 3rem;
}
.phkl-onco-landing .cancer-desc-container [data-cancer] table tr:not(:last-child) td {
  padding-bottom: 1rem;
}
.phkl-onco-landing .cancer-desc-container [data-cancer] table td {
  vertical-align: top;
}
.phkl-onco-landing .cancer-desc-container [data-cancer] table td:first-child {
  padding-right: 0.5rem;
}
.phkl-onco-landing .cancer-desc-container [data-cancer] table td:last-child {
  padding-left: 0.5rem;
  display: flex;
  gap: 0.25rem;
}
.phkl-onco-landing .cancer-desc-container [data-cancer] table td:last-child::before {
  content: ":";
}
.phkl-onco-landing .cancer-desc-container [data-cancer] table:not(:last-child) {
  margin-bottom: 1rem;
}
.phkl-onco-landing .cancer-desc-container .pagination-btn {
  display: none;
  margin-top: 2.5rem;
  padding-bottom: 3rem;
  cursor: pointer;
}
.phkl-onco-landing .cancer-desc-container .pagination-btn .left-arrow,
.phkl-onco-landing .cancer-desc-container .pagination-btn .right-arrow {
  display: flex;
  align-items: center;
}
.phkl-onco-landing .cancer-desc-container .pagination-btn .left-arrow .arrow,
.phkl-onco-landing .cancer-desc-container .pagination-btn .right-arrow .arrow {
  display: grid;
  place-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  text-align: center;
  transition: all 0.3s ease;
}
.phkl-onco-landing .cancer-desc-container .pagination-btn .left-arrow .arrow::before,
.phkl-onco-landing .cancer-desc-container .pagination-btn .right-arrow .arrow::before {
  content: "";
  border: solid currentColor;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 4px;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
}
.phkl-onco-landing .cancer-desc-container .pagination-btn .left-arrow .arrow-text,
.phkl-onco-landing .cancer-desc-container .pagination-btn .right-arrow .arrow-text {
  margin-bottom: 0rem;
  line-height: 1.2;
}
.phkl-onco-landing .cancer-desc-container .pagination-btn .left-arrow .arrow-text br,
.phkl-onco-landing .cancer-desc-container .pagination-btn .right-arrow .arrow-text br {
  display: none;
}
@media (max-width) {
  .phkl-onco-landing .cancer-desc-container .pagination-btn .left-arrow .arrow-text br,
  .phkl-onco-landing .cancer-desc-container .pagination-btn .right-arrow .arrow-text br {
    display: block;
  }
}
.phkl-onco-landing .cancer-desc-container .pagination-btn .left-arrow:hover .arrow,
.phkl-onco-landing .cancer-desc-container .pagination-btn .right-arrow:hover .arrow {
  background: rgba(0, 0, 0, 0.05);
}
.phkl-onco-landing .cancer-desc-container .pagination-btn .left-arrow .arrow {
  margin-right: 0.5rem;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.phkl-onco-landing .cancer-desc-container .pagination-btn .right-arrow {
  justify-content: end;
}
.phkl-onco-landing .cancer-desc-container .pagination-btn .right-arrow .arrow-text {
  text-align: right;
}
.phkl-onco-landing .cancer-desc-container .pagination-btn .right-arrow .arrow {
  margin-left: 0.5rem;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.phkl-onco-landing .subpage-banner .banner-title {
  font-size: calc(var(--step-5) * 1.2);
  color: white;
  font-weight: bold;
  padding-left: 25%;
}
.phkl-onco-landing .subpage-banner .banner-talent {
  padding-top: 2rem;
}
@media (max-width: 767.98px) {
  .phkl-onco-landing .subpage-banner .banner-title {
    text-align: center;
    padding-left: 0px;
    margin: 4rem 0rem;
  }
  .phkl-onco-landing .subpage-banner .banner-talent {
    width: 100%;
    padding-top: 0rem;
  }
}
.phkl-onco-landing.our-team .subpage-banner {
  background: #ffbc27;
}
.phkl-onco-landing.our-team .omt-section {
  padding: 2rem 0rem;
}
.phkl-onco-landing.our-team .the-specialist {
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.phkl-onco-landing.our-team .the-specialist h2 {
  margin-bottom: 2rem;
}
.phkl-onco-landing.our-team .the-specialist .doctor-item-grid {
  --grid-count: 3;
  --flex-width: 33.3333%;
  --x-gap: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem var(--x-gap);
  justify-content: center;
}
.phkl-onco-landing.our-team .the-specialist .doctor-item-grid .doctor-item {
  flex: 0 0 calc(var(--flex-width) - var(--x-gap));
  display: flex;
  flex-direction: column;
}
.phkl-onco-landing.our-team .the-specialist .doctor-item-grid .doctor-item .doc-img {
  position: relative;
  margin-bottom: 1rem;
  border-radius: 1rem;
  padding: 2rem 2rem 0rem;
  background: #e4e4e4;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 2px 2px 12px 0px rgba(0, 0, 0, 0.2);
}
.phkl-onco-landing.our-team .the-specialist .doctor-item-grid .doctor-item .doc-img .doc-status {
  position: absolute;
  top: 5px;
  right: 2px;
  background: #307fde;
  color: white;
  border-radius: 10em;
  padding: 0.25em 0.75em;
  font-weight: bold;
}
.phkl-onco-landing.our-team .the-specialist .doctor-item-grid .doctor-item .doc-img img {
  width: 100%;
  transition: all 0.3s ease;
}
.phkl-onco-landing.our-team .the-specialist .doctor-item-grid .doctor-item .doc-info {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.phkl-onco-landing.our-team .the-specialist .doctor-item-grid .doctor-item .doc-info h3,
.phkl-onco-landing.our-team .the-specialist .doctor-item-grid .doctor-item .doc-info .read-more {
  font-weight: bold;
  color: var(--blue);
}
.phkl-onco-landing.our-team .the-specialist .doctor-item-grid .doctor-item .doc-info .doc-spec {
  color: black;
}
.phkl-onco-landing.our-team .the-specialist .doctor-item-grid .doctor-item .doc-info .read-more {
  padding-top: var(--space-2xs);
  margin-top: auto;
}
.phkl-onco-landing.our-team .the-specialist .doctor-item-grid .doctor-item:hover .doc-img {
  background: #ccc;
}
.phkl-onco-landing.our-team .the-specialist .doctor-item-grid .doctor-item:hover .doc-img img {
  transform: scale(1.05);
}
.phkl-onco-landing.our-team .the-specialist .doctor-item-grid .doctor-item:hover .right-arrow {
  transform: translateX(5px);
}
@media (max-width: 991.98px) {
  .phkl-onco-landing.our-team .the-specialist .doctor-item-grid {
    --grid-count: 2;
    --flex-width: 50%;
  }
}
@media (max-width: 575.98px) {
  .phkl-onco-landing.our-team .the-specialist .doctor-item-grid {
    --grid-count: 1;
    --flex-width: 100%;
    --x-gap: 0rem;
  }
}
.phkl-onco-landing #doc-info-modal .rounded-close-btn {
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.phkl-onco-landing #doc-info-modal .modal-content {
  border: 5px solid #4ea8e5;
}
.phkl-onco-landing #doc-info-modal .modal-content > .container > .row {
  min-height: 650px;
}
.phkl-onco-landing #doc-info-modal .rounded-close-btn {
  --btn-size: 1.25rem;
  z-index: 2;
}
.phkl-onco-landing #doc-info-modal .doc-desc {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.phkl-onco-landing #doc-info-modal .doc-name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--blue);
  font-weight: bold;
  gap: 0.75rem;
}
.phkl-onco-landing #doc-info-modal .doc-name .doc-status {
  background: #307fde;
  color: white;
  border-radius: 10em;
  padding: 0.25em 0.75em;
  font-weight: bold;
  font-size: 1rem;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
}
.phkl-onco-landing #doc-info-modal .doc-spec {
  margin-bottom: 1.5rem;
  color: #6d6f71;
}
.phkl-onco-landing #doc-info-modal .doc-spec + .container {
  padding: 0px;
}
.phkl-onco-landing #doc-info-modal .content-title {
  color: var(--blue);
  font-weight: bold;
}
.phkl-onco-landing #doc-info-modal .ch-table td:first-child {
  padding-right: 1rem;
}
.phkl-onco-landing #doc-info-modal .doc-other-info {
  padding-top: 1rem;
  border-radius: 0.5rem;
  background: var(--blue10);
}
.phkl-onco-landing #doc-info-modal .doc-other-info .doc-qual,
.phkl-onco-landing #doc-info-modal .doc-other-info .doc-ls {
  font-weight: bold;
}
.phkl-onco-landing #doc-info-modal .doc-apt {
  margin-top: 2rem;
}
@media (max-width: 1199.98px) {
  .phkl-onco-landing #doc-info-modal .doc-img {
    margin: 1rem 0rem;
  }
  .phkl-onco-landing #doc-info-modal .doc-img img {
    height: 400px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .phkl-onco-landing #doc-info-modal .doc-desc {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
  .phkl-onco-landing #doc-info-modal .content-title {
    margin-bottom: 0rem;
  }
  .phkl-onco-landing #doc-info-modal .btn-container {
    text-align: center;
  }
  .phkl-onco-landing #doc-info-modal .btn-container .doc-apt {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.phkl-onco-landing.survivorship-page + .template-section {
  display: none;
}
.phkl-onco-landing.survivorship-page h2,
.phkl-onco-landing.survivorship-page h3 {
  color: var(--blue);
}
.phkl-onco-landing.survivorship-page .subpage-banner {
  background: #b755e0;
}
.phkl-onco-landing.survivorship-page .leave-message {
  --bs-gutter-x: 1.5rem;
  --bs-gutter: calc(var(--bs-gutter-x) * 0.5);
  margin: 3rem 0rem;
}
.phkl-onco-landing.survivorship-page .leave-message .lm-container {
  border: 3px solid #ccddff;
  background: white;
  overflow: hidden;
  border-radius: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  box-shadow: 2px 2px 12px 0px rgba(0, 0, 0, 0.2);
}
.phkl-onco-landing.survivorship-page .leave-message .st {
  margin-bottom: 1rem;
}
.phkl-onco-landing.survivorship-page .leave-message .memo-input {
  width: 100%;
  height: 100px;
  padding: 0.5rem 1rem;
  text-align: center;
  border-radius: 0.5rem;
  resize: none;
}
.phkl-onco-landing.survivorship-page .leave-message .message-btn {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}
.phkl-onco-landing.survivorship-page .leave-message .message-btn > * {
  width: 225px;
  text-align: center;
}
.phkl-onco-landing.survivorship-page .leave-message .message-btn .send-btn {
  padding: 1em 2em;
  font-weight: bold;
  color: white;
  background: var(--blue);
  border-radius: 10em;
  text-transform: uppercase;
  border: 2px solid var(--blue);
  transition: all 0.3s ease;
}
.phkl-onco-landing.survivorship-page .leave-message .message-btn .view-other-btn {
  font-weight: bold;
  padding: 1em 1em;
  border: 2px solid var(--blue);
  background: white;
  border-radius: 10em;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  .phkl-onco-landing.survivorship-page .leave-message .message-btn {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 767.98px) {
  .phkl-onco-landing.survivorship-page .leave-message {
    margin: 2rem 0rem;
    text-align: center;
    padding-left: var(--bs-gutter);
    padding-right: var(--bs-gutter);
  }
  .phkl-onco-landing.survivorship-page .leave-message .message-btn {
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .phkl-onco-landing.survivorship-page .leave-message br {
    display: none;
  }
}
.phkl-onco-landing.survivorship-page .why-choose-us {
  padding-top: 1rem;
}
.phkl-onco-landing.survivorship-page .why-choose-us .st {
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.phkl-onco-landing.survivorship-page .why-choose-us .main-wcu-slider .message-item:nth-child(3n+1) {
  background: #b1ec75;
}
.phkl-onco-landing.survivorship-page .why-choose-us .main-wcu-slider .message-item:nth-child(3n+2) {
  background: #f8c545;
}
.phkl-onco-landing.survivorship-page .why-choose-us .main-wcu-slider .message-item:nth-child(3n+3) {
  background: #84cafa;
}
.phkl-onco-landing.survivorship-page .why-choose-us .main-wcu-slider .message-item .quotation {
  color: black !important;
}
.phkl-onco-landing .survivorship-form {
  padding: 3rem 0rem;
}
.phkl-onco-landing .survivorship-form .survivorship-form-container {
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  border-radius: 1rem;
  background: url("/images/pantaihospitalmalaysiakllibraries/onco-campaign/form-bg.webp") 100% 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  box-shadow: 2px 2px 12px 0px rgba(0, 0, 0, 0.2);
}
.phkl-onco-landing .survivorship-form .survivorship-form-container .form-section {
  margin-bottom: 1rem;
}
.phkl-onco-landing .survivorship-form .survivorship-form-container .form-section label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: bold;
}
.phkl-onco-landing .survivorship-form .survivorship-form-container .form-section input,
.phkl-onco-landing .survivorship-form .survivorship-form-container .form-section textarea,
.phkl-onco-landing .survivorship-form .survivorship-form-container .form-section select {
  width: 100%;
  padding: 0.25rem 0.5rem;
  -moz-appearance: textfield;
}
.phkl-onco-landing .survivorship-form .survivorship-form-container .form-section input::-webkit-outer-spin-button, .phkl-onco-landing .survivorship-form .survivorship-form-container .form-section input::-webkit-inner-spin-button,
.phkl-onco-landing .survivorship-form .survivorship-form-container .form-section textarea::-webkit-outer-spin-button,
.phkl-onco-landing .survivorship-form .survivorship-form-container .form-section textarea::-webkit-inner-spin-button,
.phkl-onco-landing .survivorship-form .survivorship-form-container .form-section select::-webkit-outer-spin-button,
.phkl-onco-landing .survivorship-form .survivorship-form-container .form-section select::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0px;
}
.phkl-onco-landing .survivorship-form .survivorship-form-container .form-section textarea {
  resize: none;
  height: 100px;
  border-radius: 0.25rem;
}
.phkl-onco-landing .survivorship-form .survivorship-form-container .form-section .form-flex {
  display: flex;
  gap: 0.75rem;
}
.phkl-onco-landing .survivorship-form .survivorship-form-container .form-section .contact-number-region {
  width: -moz-max-content;
  width: max-content;
}
.phkl-onco-landing .survivorship-form .survivorship-form-container .required-text {
  display: none;
  color: red;
  margin-bottom: 0rem;
  font-weight: bold;
}
.phkl-onco-landing.patient-navigator-page .subpage-banner {
  background: #9177b6;
  margin-bottom: 3rem;
}
.phkl-onco-landing.patient-navigator-page .subpage-banner .banner-talent {
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1199.98px) {
  .phkl-onco-landing.patient-navigator-page .subpage-banner .banner-talent {
    height: unset;
  }
}
.phkl-onco-landing.patient-navigator-page .content-section h2 {
  font-weight: bold;
  color: var(--blue);
}
.phkl-onco-landing.patient-navigator-page .content-section hr {
  margin: 1.5rem 0rem;
  border-top: 3px solid var(--lightblue);
}
.phkl-onco-landing.patient-navigator-page .content-section p:last-child {
  margin-bottom: 0rem;
}
.phkl-onco-landing.patient-navigator-page .content-section .item-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1rem;
  margin-top: 2rem;
}
.phkl-onco-landing.patient-navigator-page .content-section .item-grid .item {
  text-align: center;
}
.phkl-onco-landing.patient-navigator-page .content-section .item-grid .item img {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
}
.phkl-onco-landing.patient-navigator-page .content-section .item-grid .item p {
  font-weight: bold;
  color: var(--blue);
  line-height: 1.25;
}
@media (max-width: 991.98px) {
  .phkl-onco-landing.patient-navigator-page .content-section .item-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.phkl-onco-landing.patient-navigator-page .content-section .info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.phkl-onco-landing.patient-navigator-page .content-section .info-grid .info {
  height: 30px;
  width: auto;
  display: flex;
  align-items: center;
}
.phkl-onco-landing.patient-navigator-page .content-section .info-grid .info img {
  margin-right: 0.5rem;
}
.phkl-onco-landing.patient-navigator-page .content-section .info-grid .info a {
  color: inherit;
  font-weight: bold;
}
.phkl-onco-landing.patient-navigator-page .content-section .info-grid .info a:hover {
  color: blue;
}
@media (max-width: 767.98px) {
  .phkl-onco-landing.patient-navigator-page .content-section .info-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.phkl-onco-landing.patient-navigator-page .content-section .onco-btn {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.phkl-onco-landing.treatment-page .subpage-banner {
  background: #4cb648;
}
@media screen and (width >= 992px) {
  .phkl-onco-landing.treatment-page .medical-oncology .container {
    --bs-gutter-x: 0rem;
  }
}
.phkl-onco-landing.treatment-page .medical-oncology .treatment-card-container {
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.phkl-onco-landing.treatment-page .medical-oncology .card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.phkl-onco-landing.treatment-page .medical-oncology .card-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
  box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  min-width: calc(20% - 1rem);
}
.phkl-onco-landing.treatment-page .medical-oncology .card-item .card-img {
  width: 100%;
  z-index: 1;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  display: none;
}
.phkl-onco-landing.treatment-page .medical-oncology .card-item .card-info {
  --title-default-size: 1rem;
  --padding-y: 1rem;
  display: flex;
  flex-direction: column;
  color: black;
  background: white;
  width: 100%;
  padding: var(--padding-y) 1rem;
  text-align: center;
  top: unset;
  bottom: 0px;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease-out;
}
.phkl-onco-landing.treatment-page .medical-oncology .card-item .card-info h3 {
  font-size: clamp(1.34rem, 1.31rem + 0.11vw, 1.42rem);
  font-weight: bold;
  margin-bottom: 1rem;
}
.phkl-onco-landing.treatment-page .medical-oncology .card-item .card-info .read-more {
  justify-content: center;
  color: var(--blue);
}
.phkl-onco-landing.treatment-page .medical-oncology .card-item .card-desc {
  display: none;
}
.phkl-onco-landing.treatment-page .medical-oncology .card-item:hover {
  background: rgba(0, 0, 0, 0.05);
}
@media (max-width: 1400px) {
  .phkl-onco-landing.treatment-page .medical-oncology .card-item {
    min-width: calc(33.333333% - 1rem);
  }
}
@media (max-width: 768px) {
  .phkl-onco-landing.treatment-page .medical-oncology .card-item {
    min-width: 100%;
  }
}
.phkl-onco-landing.treatment-page .bone-marrow .big-card,
.phkl-onco-landing.treatment-page .surgery-section .big-card {
  background: var(--lightblue);
  padding-right: 0px;
  border-radius: 1.25rem;
  overflow: hidden;
  display: block;
}
.phkl-onco-landing.treatment-page .bone-marrow .big-card .content-section,
.phkl-onco-landing.treatment-page .surgery-section .big-card .content-section {
  color: white;
  padding: 10% 0rem 10% 2rem;
}
.phkl-onco-landing.treatment-page .bone-marrow .big-card .content-section .jenna-title,
.phkl-onco-landing.treatment-page .surgery-section .big-card .content-section .jenna-title {
  font-family: "jennasue";
  font-size: 2rem;
}
.phkl-onco-landing.treatment-page .bone-marrow .big-card .content-section .section-title,
.phkl-onco-landing.treatment-page .surgery-section .big-card .content-section .section-title {
  font-weight: bold;
  color: inherit;
}
.phkl-onco-landing.treatment-page .bone-marrow .big-card .content-section .sub-title,
.phkl-onco-landing.treatment-page .surgery-section .big-card .content-section .sub-title {
  margin: 1rem 0rem;
}
.phkl-onco-landing.treatment-page .bone-marrow .big-card .content-section .read-more,
.phkl-onco-landing.treatment-page .surgery-section .big-card .content-section .read-more {
  margin-top: 2rem;
  font-weight: bold;
  color: inherit;
}
.phkl-onco-landing.treatment-page .bone-marrow .big-card .talent-img,
.phkl-onco-landing.treatment-page .surgery-section .big-card .talent-img {
  width: 100%;
  transform-origin: bottom right;
}
@media (max-width: 991.98px) {
  .phkl-onco-landing.treatment-page .bone-marrow,
  .phkl-onco-landing.treatment-page .surgery-section {
    padding: 30px 15px;
  }
  .phkl-onco-landing.treatment-page .bone-marrow .big-card,
  .phkl-onco-landing.treatment-page .surgery-section .big-card {
    padding-left: 0px;
    overflow: hidden;
  }
  .phkl-onco-landing.treatment-page .bone-marrow .big-card .content-section,
  .phkl-onco-landing.treatment-page .surgery-section .big-card .content-section {
    padding: 1.5rem 1.5rem !important;
  }
  .phkl-onco-landing.treatment-page .bone-marrow .big-card .talent-img,
  .phkl-onco-landing.treatment-page .surgery-section .big-card .talent-img {
    transform: scale(1) !important;
  }
}
@media (max-width: 991.98px) {
  .phkl-onco-landing.treatment-page .bone-marrow {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.phkl-onco-landing.treatment-page .surgery-section .big-card {
  background: #f85e5e;
}
.phkl-onco-landing.treatment-page .surgery-section .big-card .content-section {
  padding: 10% 2rem 10% 0rem;
}
.phkl-onco-landing.all-messages-page .all-messages-container {
  padding: 2rem 0rem;
}
.phkl-onco-landing.all-messages-page .all-messages-container .messages-container {
  --g: 4;
  display: grid;
  position: relative;
  grid-template-columns: repeat(var(--g), 1fr);
  padding: var(--space-l);
  background: #f7efc7;
  border-radius: 1rem;
  box-shadow: 0 0 5px 1px rgba(191, 113, 28, 0.2509803922);
}
@media (max-width: 1199.98px) {
  .phkl-onco-landing.all-messages-page .all-messages-container .messages-container {
    --g: 3;
  }
}
@media (max-width: 991.98px) {
  .phkl-onco-landing.all-messages-page .all-messages-container .messages-container {
    --g: 2;
  }
}
@media (max-width: 575.98px) {
  .phkl-onco-landing.all-messages-page .all-messages-container .messages-container {
    --g: 1;
  }
}
.phkl-onco-landing.all-messages-page .all-messages-container .item-container {
  position: relative;
  transition: all 0.3s ease;
}
.phkl-onco-landing.all-messages-page .all-messages-container .item-container .message-item {
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
  scale: 1.1;
}
.phkl-onco-landing.all-messages-page .all-messages-container .item-container .message-item img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.phkl-onco-landing.all-messages-page .all-messages-container .item-container .message-item .message-text {
  position: absolute;
  width: 80%;
  text-align: center;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  font-size: calc(var(--step-5));
  line-height: 1.15;
  font-family: "jennasue";
  color: #00003a;
}
.phkl-onco-landing.all-messages-page .all-messages-container .item-container .message-item.active {
  position: fixed;
  z-index: 101;
}
.phkl-onco-landing.all-messages-page .all-messages-container .item-container.one .message-text, .phkl-onco-landing.all-messages-page .all-messages-container .item-container[data-message="1"] .message-text {
  top: 20%;
  left: 9%;
  transform: rotateZ(5.5deg);
  z-index: 1;
}
.phkl-onco-landing.all-messages-page .all-messages-container .item-container.two .message-text, .phkl-onco-landing.all-messages-page .all-messages-container .item-container[data-message="2"] .message-text {
  left: 10%;
  top: 20%;
  transform: rotateZ(-3.5deg);
  z-index: 2;
}
.phkl-onco-landing.all-messages-page .all-messages-container .item-container.three .message-text, .phkl-onco-landing.all-messages-page .all-messages-container .item-container[data-message="3"] .message-text {
  left: 9%;
  top: 17%;
  transform: rotateZ(14deg);
  z-index: 1;
}
.phkl-onco-landing.all-messages-page .all-messages-container .item-container.four .message-text, .phkl-onco-landing.all-messages-page .all-messages-container .item-container[data-message="4"] .message-text {
  width: 75%;
  top: 15%;
  left: 17%;
  transform: rotateZ(-4.5deg);
  z-index: 1;
}
.phkl-onco-landing.all-messages-page .all-messages-container .item-container.five .message-text, .phkl-onco-landing.all-messages-page .all-messages-container .item-container[data-message="5"] .message-text {
  left: 10%;
  top: 20%;
  transform: rotateZ(-4.5deg);
  z-index: 2;
}
.phkl-onco-landing.all-messages-page .all-messages-container .item-container:hover {
  scale: 1.1;
  z-index: 3;
  rotate: 0deg !important;
}
.phkl-onco-landing.all-messages-page .all-messages-container .item-container[data-message="1"] {
  transform: rotateZ(-5.5deg);
}
.phkl-onco-landing.all-messages-page .all-messages-container .item-container[data-message="2"] {
  transform: rotateZ(3.5deg);
}
.phkl-onco-landing.all-messages-page .all-messages-container .item-container[data-message="3"] {
  transform: rotateZ(-14deg);
}
.phkl-onco-landing.all-messages-page .all-messages-container .item-container[data-message="4"] {
  transform: rotateZ(4.5deg);
}
.phkl-onco-landing.all-messages-page .all-messages-container .item-container[data-message="5"] {
  transform: rotateZ(4.5deg);
}
.phkl-onco-landing.sitemap .sitemap-container h1 {
  font-size: calc(var(--step-5) * 1.5);
  margin-bottom: 1rem;
}
.phkl-onco-landing.sitemap .sitemap-container h1,
.phkl-onco-landing.sitemap .sitemap-container h2,
.phkl-onco-landing.sitemap .sitemap-container .title-link {
  color: var(--blue);
  font-weight: bold;
}
.phkl-onco-landing.sitemap .sitemap-container h2,
.phkl-onco-landing.sitemap .sitemap-container .title-link {
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}
.phkl-onco-landing.sitemap .sitemap-container a {
  color: black;
  display: block;
  margin-bottom: 0.5rem;
}
.phkl-onco-landing.sitemap .sitemap-container a:hover {
  text-decoration: underline;
}
.phkl-onco-landing.sitemap .sitemap-container .title-link {
  font-size: var(--step-5);
}
@media (max-width: 767.98px) {
  .phkl-onco-landing.sitemap .sitemap-container h2 {
    margin-bottom: 0.5rem;
  }
}
.phkl-onco-landing.screening-diagnosis-page .subpage-banner {
  background: var(--blue);
}
.phkl-onco-landing.screening-diagnosis-page .imaging .card-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
  border: 1px solid;
}
.phkl-onco-landing.screening-diagnosis-page .imaging .card-item .card-img {
  width: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.phkl-onco-landing.screening-diagnosis-page .imaging .card-item .card-info {
  --title-default-size: 1rem;
  --padding-y: 1rem;
  display: flex;
  flex-direction: column;
  color: black;
  background: white;
  width: 100%;
  padding: var(--padding-y) 1rem;
  text-align: center;
  top: unset;
  bottom: 0px;
  justify-content: center;
  z-index: 2;
  border-top: 6px solid var(--blue);
  transition: all 0.3s ease-out;
}
.phkl-onco-landing.screening-diagnosis-page .imaging .card-item .card-info h3 {
  font-size: clamp(1.34rem, 1.31rem + 0.11vw, 1.42rem);
  font-weight: bold;
  margin-bottom: 1rem;
}
.phkl-onco-landing.screening-diagnosis-page .imaging .card-item .card-info .read-more {
  justify-content: center;
  color: var(--blue);
}
.phkl-onco-landing.screening-diagnosis-page .imaging .card-item .card-desc {
  display: none;
}
@media screen and (width >= 992px) {
  .phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .container {
    --bs-gutter-x: 0rem;
  }
}
.phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .small-card {
  --br: 0.75rem;
  color: white;
}
.phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .small-card .content-section {
  padding: 1rem;
}
.phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .small-card .content-section h2 {
  font-weight: bold;
  margin-bottom: 2rem;
  color: white;
}
.phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .small-card .red,
.phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .small-card .green {
  border-radius: var(--br);
  position: relative;
  display: block;
}
.phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .small-card .red > .container,
.phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .small-card .green > .container {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .small-card .red > .container,
.phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .small-card .red > .container > .row,
.phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .small-card .green > .container,
.phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .small-card .green > .container > .row {
  min-height: 220px;
}
.phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .small-card .red > .container > .row,
.phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .small-card .red > .container > .row > .row,
.phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .small-card .green > .container > .row,
.phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .small-card .green > .container > .row > .row {
  height: 100%;
}
.phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .small-card img {
  width: 100%;
  transform-origin: bottom right;
  transform: scale(1.05);
  border-bottom-right-radius: var(--br);
}
.phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .small-card .red {
  background: #f75e5e;
}
.phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .small-card .green {
  background: var(--green);
}
@media (max-width: 991.98px) {
  .phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .small-card {
    padding: 0rem 0.75rem 1.5rem 0.75rem !important;
  }
  .phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .small-card .red > .container,
  .phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .small-card .red > .container > .row,
  .phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .small-card .green > .container,
  .phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .small-card .green > .container > .row {
    min-height: unset;
  }
  .phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .small-card .content-section {
    padding: 1rem 0rem;
  }
  .phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .small-card .content-section h2 {
    margin-bottom: 1rem;
  }
  .phkl-onco-landing.screening-diagnosis-page .nuclear-medicine .small-card:last-child {
    padding-bottom: 0rem !important;
  }
}
.phkl-onco-landing.screening-diagnosis-page .biopsy,
.phkl-onco-landing.screening-diagnosis-page .lab-test {
  --bs-gutter-x: 2.5rem;
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
}
.phkl-onco-landing.screening-diagnosis-page .biopsy .big-card .talent-img {
  border-top-right-radius: 1.25rem;
}
@media (max-width: 991.98px) {
  .phkl-onco-landing.screening-diagnosis-page .biopsy .big-card .talent-img {
    padding-left: 1rem;
  }
}
.phkl-onco-landing.screening-diagnosis-page .lab-test .big-card {
  background: var(--pink);
}
.phkl-onco-landing.screening-diagnosis-page .lab-test .big-card .content-section {
  padding: 15% 2rem;
}
@media (max-width: 991.98px) {
  .phkl-onco-landing.screening-diagnosis-page .lab-test .big-card .talent-img {
    padding-right: 1rem;
  }
}
.phkl-onco-landing.screening-diagnosis-page .big-card {
  background: var(--lightblue);
  padding-right: 0px;
  border-radius: 1.25rem;
  display: block;
}
.phkl-onco-landing.screening-diagnosis-page .big-card .content-section {
  color: white;
  padding: 15% 0rem 15% 2rem;
}
.phkl-onco-landing.screening-diagnosis-page .big-card .content-section .jenna-title {
  font-family: "jennasue";
  font-size: 2rem;
}
.phkl-onco-landing.screening-diagnosis-page .big-card .content-section .section-title {
  font-weight: bold;
  color: inherit;
}
.phkl-onco-landing.screening-diagnosis-page .big-card .content-section .sub-title {
  margin: 1rem 0rem;
}
.phkl-onco-landing.screening-diagnosis-page .big-card .content-section .read-more {
  margin-top: 2rem;
  font-weight: bold;
  color: inherit;
}
.phkl-onco-landing.screening-diagnosis-page .big-card .talent-img {
  width: 100%;
  transform-origin: bottom right;
}
@media (max-width: 991.98px) {
  .phkl-onco-landing.screening-diagnosis-page .big-card {
    padding-left: 0px;
    overflow: hidden;
  }
  .phkl-onco-landing.screening-diagnosis-page .big-card .content-section {
    padding: 1.5rem 1.5rem !important;
  }
  .phkl-onco-landing.screening-diagnosis-page .big-card .talent-img {
    transform: scale(1) !important;
    border-top-right-radius: 0rem !important;
  }
}

footer#phkl-onco-footer {
  --pb: 1.5rem;
  padding: clamp(1.75rem, 3vw, 2.25rem) 0;
  background: #f3f3f3;
}
footer#phkl-onco-footer .header-logo {
  margin-bottom: var(--pb);
}
footer#phkl-onco-footer .links-container {
  display: flex;
}
footer#phkl-onco-footer .links-container .links {
  flex: 1 0 200px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
footer#phkl-onco-footer h3 {
  margin-bottom: 1rem;
  color: var(--blue);
}
footer#phkl-onco-footer p {
  margin-bottom: var(--pb);
}
footer#phkl-onco-footer a {
  color: inherit;
  font-size: inherit;
}
@media (max-width: 991.98px) {
  footer#phkl-onco-footer .header-logo {
    height: 40px;
  }
  footer#phkl-onco-footer .header-logo img {
    height: 100%;
    width: auto;
  }
  footer#phkl-onco-footer .links-container {
    margin-bottom: var(--pb);
  }
}
@media (max-width: 575.98px) {
  footer#phkl-onco-footer .links-container {
    flex-direction: column;
  }
  footer#phkl-onco-footer .links-container .links {
    flex: unset;
  }
  footer#phkl-onco-footer .links-container .links:first-child {
    margin-bottom: 1rem;
  }
}

.font-bold {
  font-weight: bold;
}

.font-blue {
  color: var(--blue);
}

.jcs {
  justify-content: center;
}

.read-more {
  display: flex;
  align-items: center;
  color: inherit;
  font-weight: bold;
  text-transform: uppercase;
}
.read-more .right-arrow {
  --arrow-height: 10px;
  width: 30px;
  height: var(--arrow-height);
  display: flex;
  transition: all 0.3s ease;
}
.read-more .right-arrow::before {
  content: "";
  flex: 1;
  margin-left: 10px;
  background: currentColor;
  -webkit-clip-path: polygon(0 calc(var(--arrow-height) * 0.3333), calc(100% - var(--arrow-height) / 2) calc(var(--arrow-height) * 0.3333), calc(100% - var(--arrow-height) / 2) 0, 100% 50%, calc(100% - var(--arrow-height) / 2) 100%, calc(100% - var(--arrow-height) / 2) calc(100% - var(--arrow-height) * 0.3333), 0 calc(100% - var(--arrow-height) * 0.3333));
          clip-path: polygon(0 calc(var(--arrow-height) * 0.3333), calc(100% - var(--arrow-height) / 2) calc(var(--arrow-height) * 0.3333), calc(100% - var(--arrow-height) / 2) 0, 100% 50%, calc(100% - var(--arrow-height) / 2) 100%, calc(100% - var(--arrow-height) / 2) calc(100% - var(--arrow-height) * 0.3333), 0 calc(100% - var(--arrow-height) * 0.3333));
}
.read-more:hover {
  color: inherit;
}
.read-more:hover .right-arrow {
  transform: translateX(5px);
}

.swiper-alt-container {
  --btn-size: 35px;
  --to-reduce: 0rem;
  position: relative;
}
.swiper-alt-container .swiper-button-prev {
  left: calc(var(--btn-size) / -2 + var(--to-reduce));
}
.swiper-alt-container .swiper-button-next {
  right: calc(var(--btn-size) / -2 + var(--to-reduce));
}
.swiper-alt-container .swiper-button-prev,
.swiper-alt-container .swiper-button-next {
  background: white;
  border-radius: 50%;
  box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.3);
  aspect-ratio: 1/1;
  height: var(--btn-size);
  width: var(--btn-size);
}
.swiper-alt-container .swiper-button-prev::after,
.swiper-alt-container .swiper-button-next::after {
  font-size: 1rem;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .swiper-alt-container {
    --to-reduce: 0.5rem;
  }
}

.rounded-close-btn {
  --btn-size: 1.25rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5em;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  border-radius: 50%;
}
.rounded-close-btn span {
  display: grid;
  place-content: center;
  color: white;
  position: relative;
  width: var(--btn-size);
  height: var(--btn-size);
}
.rounded-close-btn span::after, .rounded-close-btn span::before {
  content: "";
  height: 2px;
  width: var(--btn-size);
  top: 0px;
  background: currentColor;
  transform-origin: center;
  border-radius: 10em;
  grid-area: 1/1;
}
.rounded-close-btn span::after {
  transform: rotateZ(45deg);
}
.rounded-close-btn span::before {
  transform: rotateZ(-45deg);
}

.onco-btn {
  display: inline-block;
  background: var(--blue);
  padding: 0.75em 1.5em;
  color: white;
  font-weight: bold;
  border-radius: 10em;
}
.onco-btn:hover {
  color: white;
}

.patient-video-modal iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

#message-popup-modal .rounded-close-btn, #form-popup-modal .rounded-close-btn {
  --btn-size: 1.25rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
}
#message-popup-modal .modal-content, #form-popup-modal .modal-content {
  border: 5px solid #4ea8e5;
  padding: 3rem 1rem;
}
#message-popup-modal .sent-img, #form-popup-modal .sent-img {
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
}
#message-popup-modal .sent-message, #form-popup-modal .sent-message {
  color: var(--blue);
  font-weight: bold;
  margin-bottom: 0rem;
}

#memo-message-btn.disabled {
  pointer-events: none;
}

#oncology-info-modal .rounded-close-btn,
#sad-modal1 .rounded-close-btn,
#sad-modal2 .rounded-close-btn {
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
}
#oncology-info-modal .modal-content,
#sad-modal1 .modal-content,
#sad-modal2 .modal-content {
  border: 5px solid #4ea8e5;
}
#oncology-info-modal .content-container,
#sad-modal1 .content-container,
#sad-modal2 .content-container {
  min-height: 500px;
}
#oncology-info-modal .content-container .content-img,
#sad-modal1 .content-container .content-img,
#sad-modal2 .content-container .content-img {
  height: 450px;
  flex: 3;
}
#oncology-info-modal .content-container .content-img img,
#sad-modal1 .content-container .content-img img,
#sad-modal2 .content-container .content-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #oncology-info-modal .content-container .content-img,
  #sad-modal1 .content-container .content-img,
  #sad-modal2 .content-container .content-img {
    height: unset;
  }
}
#oncology-info-modal .content-container .content-text,
#sad-modal1 .content-container .content-text,
#sad-modal2 .content-container .content-text {
  flex: 4;
  padding: 1rem;
  align-self: center;
}
#oncology-info-modal .content-container .content-text .content-desc p:last-child,
#sad-modal1 .content-container .content-text .content-desc p:last-child,
#sad-modal2 .content-container .content-text .content-desc p:last-child {
  margin-bottom: 0rem;
}
@media (max-width: 991.98px) {
  #oncology-info-modal .content-container,
  #sad-modal1 .content-container,
  #sad-modal2 .content-container {
    flex-direction: column;
  }
}

@media screen and (width >= 992px) and (width < 1200px) {
  .header-links.desktop {
    font-size: var(--step--1);
  }
}
.header-links.desktop .main-nav-item {
  position: relative;
}
.header-links.desktop .main-nav-item .main-nav-item-title {
  display: flex;
  align-items: center;
  text-align: center;
}
.header-links.desktop .main-nav-item .main-nav-item-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  padding-top: var(--space-xs);
  pointer-events: none;
  transition: all 0.12s ease;
}
.header-links.desktop .main-nav-item .main-nav-item-dropdown.show {
  opacity: 1;
  pointer-events: all;
}
.header-links.desktop .main-nav-item .main-nav-item-dropdown .main-nav-item-dropdown-inner {
  background: white;
  padding: var(--space-s);
  box-shadow: 0px 1px 7px 1px rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}
.header-links.desktop .main-nav-item.right .main-nav-item-dropdown {
  right: 0px;
  left: unset;
}

#phkl-onco-header .mobile-sidebar {
  background: #f3f3f3;
}
#phkl-onco-header .mobile-sidebar .main-nav-item {
  width: 100%;
}
#phkl-onco-header .mobile-sidebar .main-nav-item .main-nav-item-title {
  font-weight: bold;
  color: black;
  display: flex;
  align-items: center;
  font-size: var(--step-1);
}
#phkl-onco-header .mobile-sidebar .main-nav-item .main-nav-item-title .vt-chevron-down {
  display: none !important;
  margin-left: 0.5rem;
}
#phkl-onco-header .mobile-sidebar .main-nav-item .main-nav-item-title .vt-chevron-down::after {
  transform: rotate(-45deg) !important;
  border-color: black !important;
}
#phkl-onco-header .mobile-sidebar .main-nav-item .main-nav-item-dropdown {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.25s ease;
}
#phkl-onco-header .mobile-sidebar .main-nav-item .main-nav-item-dropdown > div {
  overflow: hidden;
}
#phkl-onco-header .mobile-sidebar .main-nav-item .main-nav-item-dropdown .main-nav-item-dropdown-inner {
  overflow: hidden;
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  margin-top: var(--space-m);
  background: white;
  gap: var(--space-s);
  width: 100%;
  border-radius: 0.25rem;
  transition: all 0.25s ease;
  /* width: calc(100% + 3rem); */
  /* margin-left: -1.5rem;*/
}

.our-team-filter > * {
  flex: 0 0 20rem;
}
@media screen and (width < 992px) {
  .our-team-filter > * {
    flex: 1 0 100%;
  }
}

.mobile-sidebar .main-nav-item-dropdown-inner a {
  border: 1px solid rgba(0, 0, 0, 0.1803921569);
  padding: var(--space-2xs) var(--space-xs);
  border-radius: 3rem;
  background: #ffffff;
}

.checkmark__circle {
  --checkmark-size: 110px;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #7ac142;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: var(--checkmark-size);
  height: var(--checkmark-size);
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #7ac142;
  animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px calc(var(--checkmark-size) / 2) #7ac142;
  }
}/*# sourceMappingURL=main.css.map */