:root {
  --primary: #307fde;
  --secondary: #00aeec;
  --header-height-desktop: 144px;
  --header-height-mobile: 77px;
}

html, body {
  scroll-padding-top: var(--header-height-desktop);
}
@media (max-width: 576px) {
  html, body {
    scroll-padding-top: var(--header-height-mobile);
  }
}

*, *::before, *::after {
  transition: all 0.3s ease;
}

a {
  text-decoration: none;
}

#ttb-header {
  padding: 1rem 0rem;
  box-shadow: 2px 8px 15px 2px rgba(0, 0, 0, 0.2);
  z-index: 100;
  position: fixed;
  background: white;
  width: 100%;
}
#ttb-header .ttb-container {
  display: flex;
}
#ttb-header .ttb-container .logo {
  width: 300px;
  height: 100%;
}
#ttb-header .ttb-container .logo img {
  width: 100%;
  height: auto;
}
@media (max-width: 576px) {
  #ttb-header .ttb-container .logo {
    width: 250px;
  }
}
#ttb-header .ttb-container .top-nav-inner .top-nav-cta {
  padding: 0rem !important;
}
#ttb-header .ttb-container .top-nav-inner .top-nav-cta a:last-child {
  padding-right: 0rem !important;
}
#ttb-header .ttb-container .top-nav-inner .top-nav-cta::after {
  display: none !important;
}
#ttb-header .ttb-container .links {
  display: flex;
  margin-left: auto;
  align-items: center;
}
#ttb-header .ttb-container .links a {
  font-weight: bold;
  color: var(--primary);
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  border-left: 2px solid var(--primary);
}
#ttb-header .ttb-container .links a:last-child {
  border-right: 2px solid var(--primary);
}
#ttb-header .ttb-container .links a:hover {
  background: var(--primary);
  color: white;
}
@media (max-width: 992px) {
  #ttb-header .ttb-container .links a {
    border-left: none;
    border-right: none !important;
  }
}
#ttb-header .ttb-container .mobile-hamburger {
  display: none;
}
@media (max-width: 992px) {
  #ttb-header .ttb-container .links {
    display: none;
  }
  #ttb-header .ttb-container .links.open {
    display: flex;
    position: absolute;
    top: 65px;
    background: white;
    left: 0px;
    flex-direction: column;
    width: 100%;
    text-align: left;
    align-items: baseline;
    gap: 1.5rem;
    padding: 1rem;
  }
  #ttb-header .ttb-container .mobile-hamburger {
    margin-left: auto;
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    align-self: center;
    cursor: pointer;
  }
}

.treat-to-beat {
  padding-top: var(--header-height-desktop);
}
@media (max-width: 576px) {
  .treat-to-beat {
    padding-top: var(--header-height-mobile);
  }
}
.treat-to-beat > div {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
.treat-to-beat p {
  font-size: clamp(1rem, 0.9342rem + 0.2632vi, 1.25rem);
}
.treat-to-beat p:last-child {
  margin-bottom: 0px;
}
.treat-to-beat a {
  text-decoration: none;
}
.treat-to-beat .banner-section .swiper-pagination .swiper-pagination-bullet {
  --swiper-pagination-bullet-inactive-opacity: 0.5;
  background: white;
}
.treat-to-beat .act-sooner-section {
  text-align: center;
  background: var(--primary);
}
.treat-to-beat .act-sooner-section img {
  width: 120px;
  height: auto;
  margin-bottom: 1rem;
}
.treat-to-beat .act-sooner-section p {
  color: white;
}
.treat-to-beat .about-campaign {
  --transition: all 0.3s ease;
  background: var(--primary);
}
.treat-to-beat .about-campaign .about-slider-container {
  position: relative;
  padding: 0rem 3rem;
}
.treat-to-beat .about-campaign .about-slider-container .swiper-slide {
  padding: 2rem 0rem;
}
.treat-to-beat .about-campaign .about-slider-container .swiper-slide.swiper-slide-active {
  transform: scale(1.2);
  z-index: 2;
}
@media (max-width: 768px) {
  .treat-to-beat .about-campaign .about-slider-container .swiper-slide {
    padding: 0rem;
  }
  .treat-to-beat .about-campaign .about-slider-container .swiper-slide.swiper-slide-active {
    transform: scale(1);
  }
}
.treat-to-beat .about-campaign .about-slider-container .swiper-wrapper {
  padding-bottom: 2rem;
}
.treat-to-beat .about-campaign .about-slider-container .swiper-button {
  color: white;
}
.treat-to-beat .about-campaign .about-slider-container .swiper-pagination {
  --swiper-pagination-color: white;
  bottom: 0rem;
}
@media (max-width: 768px) {
  .treat-to-beat .about-campaign .about-slider-container {
    padding: 0rem;
  }
  .treat-to-beat .about-campaign .about-slider-container .swiper-button {
    color: black;
  }
}
.treat-to-beat .about-campaign .about-slider {
  position: relative;
}
.treat-to-beat .about-campaign .about-slider .about-item {
  display: grid;
  border-radius: 1rem;
  overflow: hidden;
}
.treat-to-beat .about-campaign .about-slider .about-item > * {
  grid-area: 1/1;
}
.treat-to-beat .about-campaign .about-slider .about-item .item-img {
  z-index: 1;
}
.treat-to-beat .about-campaign .about-slider .about-item .item-img img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.treat-to-beat .about-campaign .about-slider .about-item .item-info {
  align-self: end;
  z-index: 2;
  color: white;
  padding: 0.75rem;
  line-height: 1.2em;
}
.treat-to-beat .about-campaign .about-slider .about-item .item-gradient {
  --gradient: #fe79d7;
  z-index: 2;
  width: 100%;
  height: 50%;
  align-self: flex-end;
  background: linear-gradient(to top, var(--gradient) 50%, transparent);
}
.treat-to-beat .about-campaign .about-slider .about-item p {
  position: absolute;
  bottom: 0px;
  padding: 1rem;
  z-index: 3;
  color: white;
  font-weight: bold;
  font-size: 14px;
}
.treat-to-beat .about-campaign .about-slider .about-item.pink .item-gradient {
  --gradient: #fe79d7;
}
.treat-to-beat .about-campaign .about-slider .about-item.yellow .item-gradient {
  --gradient: #ffbc29;
}
.treat-to-beat .about-campaign .about-slider .about-item.blue .item-gradient {
  --gradient: var(--secondary);
}
.treat-to-beat .about-campaign .about-slider .about-item.orange .item-gradient {
  --gradient: #ef6b33;
}
.treat-to-beat .about-campaign .about-slider .about-item.green .item-gradient {
  --gradient: #7ac943;
}
.treat-to-beat .about-campaign .specialties-card {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.treat-to-beat .about-campaign .specialties-card .card-item {
  position: relative;
  width: calc(33.333333% - 2.5rem);
  height: 100%;
  transition: var(--transition);
  cursor: pointer;
}
.treat-to-beat .about-campaign .specialties-card .card-item .card-img {
  padding-top: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  background: black;
  z-index: 1;
}
.treat-to-beat .about-campaign .specialties-card .card-item .card-img img {
  width: 100%;
}
.treat-to-beat .about-campaign .specialties-card .card-item .card-title {
  position: absolute;
  bottom: 0rem;
  padding-left: 1rem;
  transition: var(--transition);
  color: white;
  font-weight: bold;
}
.treat-to-beat .about-campaign .specialties-card .card-item.selected {
  width: 33.333333%;
}
.treat-to-beat .about-campaign .specialties-card .card-item.selected .card-title {
  z-index: 2;
  bottom: 0.5rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .treat-to-beat .about-campaign .specialties-card {
    gap: 0rem;
    justify-content: unset;
  }
  .treat-to-beat .about-campaign .specialties-card .card-item .card-title {
    bottom: unset;
    top: 1rem;
    color: white;
  }
}
@media (max-width: 768px) {
  .treat-to-beat .about-campaign .specialties-card-wrapper {
    overflow-x: hidden;
  }
}
.treat-to-beat .about-campaign .specialty-desc {
  --section-color: white;
  position: relative;
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--section-color);
  border-radius: 1rem;
}
.treat-to-beat .about-campaign .specialty-desc[data-spec=cardio] .pointer {
  left: 2rem;
}
.treat-to-beat .about-campaign .specialty-desc[data-spec=ortho] .pointer {
  left: calc(50% - 13px);
}
.treat-to-beat .about-campaign .specialty-desc[data-spec=onco] .pointer {
  left: calc(100% - 4rem);
}
.treat-to-beat .about-campaign .specialty-desc .pointer {
  position: absolute;
  top: -24px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 15px 26px 15px;
  border-color: transparent transparent var(--section-color) transparent;
  transform: rotate(0deg);
  transition: var(--transition);
}
.treat-to-beat .about-campaign .specialty-desc .desc-item p {
  text-wrap: wrap;
  color: black;
}
.treat-to-beat .about-campaign .learn-more-btn {
  --section-color: #4cb748;
}
.treat-to-beat .about-campaign .specialties-card-wrapper .swiper-button {
  display: none;
}
@media (max-width: 768px) {
  .treat-to-beat .about-campaign .specialty-desc {
    margin-top: 1rem;
  }
  .treat-to-beat .about-campaign .specialty-desc .pointer {
    display: none;
  }
  .treat-to-beat .about-campaign .specialties-card-wrapper .swiper-button {
    display: block;
    color: white;
  }
  .treat-to-beat .about-campaign .swiper-pagination-bullet {
    background: white;
  }
}
.treat-to-beat .slider-section {
  background: var(--secondary);
}
.treat-to-beat .slider-section .slider-main-container {
  position: relative;
  padding: 0rem 3rem;
}
@media (max-width: 768px) {
  .treat-to-beat .slider-section .slider-main-container {
    padding: 0rem;
  }
}
.treat-to-beat .slider-section .slider-container {
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  .treat-to-beat .slider-section .slider-container {
    padding-bottom: 0rem;
  }
}
.treat-to-beat .slider-section .swiper-wrapper {
  padding: 2rem 0rem;
}
.treat-to-beat .slider-section .swiper-wrapper .swiper-slide.swiper-slide-active {
  transform: scale(1.2);
  z-index: 2;
}
@media (max-width: 768px) {
  .treat-to-beat .slider-section .swiper-wrapper .swiper-slide.swiper-slide-active {
    transform: scale(1);
  }
}
.treat-to-beat .slider-section .swiper-wrapper .swiper-slide:nth-child(1) .slider-gradient {
  --gradient: var(--primary);
}
.treat-to-beat .slider-section .swiper-wrapper .swiper-slide:nth-child(2) .slider-gradient {
  --gradient: #ff6edb;
}
.treat-to-beat .slider-section .swiper-wrapper .swiper-slide:nth-child(3) .slider-gradient {
  --gradient: #5ccb1c;
}
.treat-to-beat .slider-section .swiper-wrapper .swiper-slide:nth-child(4) .slider-gradient {
  --gradient: #ffbc29;
}
.treat-to-beat .slider-section .swiper-wrapper .swiper-slide:nth-child(5) .slider-gradient {
  --gradient: var(--secondary);
}
.treat-to-beat .slider-section .slider-item {
  display: grid;
  border-radius: 1rem;
  overflow: hidden;
}
.treat-to-beat .slider-section .slider-item > * {
  grid-area: 1/1;
}
.treat-to-beat .slider-section .slider-item .slider-img {
  z-index: 1;
}
.treat-to-beat .slider-section .slider-item .slider-img img {
  width: 100%;
}
.treat-to-beat .slider-section .slider-item .slider-info {
  height: 50%;
  align-self: end;
  z-index: 2;
}
.treat-to-beat .slider-section .slider-item .slider-gradient {
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--gradient) 30%, transparent);
}
.treat-to-beat .slider-section .slider-item p {
  position: absolute;
  bottom: 0px;
  padding: 1rem;
  z-index: 3;
  color: white;
  font-weight: bold;
  font-size: 14px;
}
.treat-to-beat .slider-section .slider-item:hover img {
  transform: scale(1.1);
}
.treat-to-beat .slider-section .swiper-pagination {
  bottom: 0rem;
}
.treat-to-beat .slider-section .swiper-pagination .swiper-pagination-bullet {
  --swiper-pagination-bullet-inactive-opacity: 0.5;
  background: white;
}
.treat-to-beat .slider-section .swiper-button {
  color: white;
}
.treat-to-beat .gp-connect {
  display: grid;
}
.treat-to-beat .gp-connect > * {
  grid-area: 1/1;
}
.treat-to-beat .gp-connect .bg-image {
  z-index: 1;
}
.treat-to-beat .gp-connect .bg-image .mobile {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .treat-to-beat .gp-connect .bg-image {
    height: 600px;
  }
}
.treat-to-beat .gp-connect .mobile-gradient {
  display: none;
  z-index: 2;
  width: 100%;
  height: 50%;
  opacity: 0.7;
  background: linear-gradient(to bottom, white 80%, transparent);
}
@media (max-width: 992px) {
  .treat-to-beat .gp-connect .mobile-gradient {
    display: block;
  }
}
.treat-to-beat .gp-connect .content-section {
  z-index: 3;
  text-align: center;
  align-self: center;
}
@media (max-width: 992px) {
  .treat-to-beat .gp-connect .content-section {
    align-self: flex-start;
  }
}
.treat-to-beat .join-section {
  --border-radius: 1.5rem;
}
.treat-to-beat .join-section .join-details-section {
  --swiper-pagination-color: #005773;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.treat-to-beat .join-section .join-details {
  display: grid;
  overflow: hidden;
  border-radius: var(--border-radius);
}
.treat-to-beat .join-section .join-details > * {
  grid-area: 1/1;
}
.treat-to-beat .join-section .join-details .join-img img {
  height: 100%;
  width: 65%;
  -o-object-fit: cover;
     object-fit: cover;
}
.treat-to-beat .join-section .join-details .join-info {
  max-width: 425px;
  background: #00ba32;
  color: white;
  margin-left: auto;
  display: grid;
  place-content: center;
  padding: 1.5rem 2rem;
  text-align: center;
  border-radius: var(--border-radius);
}
.treat-to-beat .join-section .join-details .join-info .venue-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 370px;
  border-collapse: separate;
  border-spacing: 0.25rem;
}
.treat-to-beat .join-section .join-details .join-info .venue-info tr:not(:last-child) td {
  margin-bottom: 0.5rem;
}
.treat-to-beat .join-section .join-details .join-info .venue-info td {
  vertical-align: top;
}
.treat-to-beat .join-section .join-details .join-info .venue-info img {
  width: 24px;
  height: auto;
}
.treat-to-beat .join-section .join-details .join-info .venue-info div {
  margin-bottom: 0rem;
  margin-left: 0.375rem;
  text-align: left;
  font-weight: 500;
  color: white;
  font-weight: bold;
}
.treat-to-beat .join-section .join-details .join-info hr {
  border-bottom: 1px solid var(--primary);
  opacity: 1;
}
.treat-to-beat .join-section .join-details .join-info .white {
  display: none;
}
@media (max-width: 768px) {
  .treat-to-beat .join-section .join-details {
    height: auto;
  }
  .treat-to-beat .join-section .join-details h3 {
    color: white;
  }
  .treat-to-beat .join-section .join-details .join-img img {
    width: 100%;
  }
  .treat-to-beat .join-section .join-details .join-info {
    padding: 1.5rem;
    max-width: unset;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
  }
  .treat-to-beat .join-section .join-details .join-info .venue-info {
    width: 100%;
  }
  .treat-to-beat .join-section .join-details .join-info h3, .treat-to-beat .join-section .join-details .join-info p {
    color: white;
  }
  .treat-to-beat .join-section .join-details .join-info hr {
    border-color: white;
  }
  .treat-to-beat .join-section .join-details .join-info .white {
    display: block;
  }
}
.treat-to-beat .join-section .social-icons {
  display: flex;
  gap: 2rem;
  color: white;
  font-size: 2.5rem;
  justify-content: center;
}
.treat-to-beat .join-section .gallery-section {
  max-height: 425px;
  overflow: hidden;
}
.treat-to-beat .join-section .gallery-section .gallery-grid {
  --g: 5;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(var(--g), 1fr);
}
.treat-to-beat .join-section .gallery-section .gallery-grid .gallery-item {
  display: grid;
  cursor: pointer;
}
.treat-to-beat .join-section .gallery-section .gallery-grid .gallery-item > * {
  grid-area: 1/1;
}
.treat-to-beat .join-section .gallery-section .gallery-grid .gallery-item .item-social {
  display: grid;
  place-content: center;
  position: relative;
  background: white;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  font-size: 1.25rem;
  z-index: 2;
  margin: 0.5rem 0.5rem 0rem auto;
  color: var(--secondary);
}
.treat-to-beat .join-section .gallery-section .gallery-grid .gallery-item .item-img {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.treat-to-beat .join-section .gallery-section .gallery-grid .gallery-item .item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.treat-to-beat .join-section .gallery-section .gallery-grid .gallery-item .item-caption {
  z-index: 3;
  padding: 0.75rem;
  color: white;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  font-size: 14px;
  text-align: left;
  overflow: hidden;
}
.treat-to-beat .join-section .gallery-section .gallery-grid .gallery-item .item-caption .item-height {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
.treat-to-beat .join-section .gallery-section .gallery-grid .gallery-item .item-caption p {
  font-size: 14px;
}
.treat-to-beat .join-section .gallery-section .gallery-grid .gallery-item:hover .item-caption {
  opacity: 1;
}
@media (max-width: 1200px) {
  .treat-to-beat .join-section .gallery-section .gallery-grid {
    --g: 4;
  }
}
@media (max-width: 768px) {
  .treat-to-beat .join-section .gallery-section .gallery-grid {
    --g: 3;
  }
}
.treat-to-beat .join-section .gallery-section .learn-more-btn {
  --section-color: var(--secondary);
}
.treat-to-beat #gallery {
  background: #fe79d7;
}

.fs-20 {
  font-size: 1.25rem;
}

.pri-bg {
  background: var(--primary);
  color: white;
}

.py-section {
  --section-padding: 2.5rem;
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.aspect-16-9 {
  aspect-ratio: 16/9;
}

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

.text-yellow {
  color: #ffbc29;
}

.bg-yellow {
  background: #ffb800;
}

.jcs {
  justify-content: center;
}

.find-out-more {
  display: block;
  width: -moz-max-content;
  width: max-content;
  border-radius: 10em;
  padding: 0.75em 1.5em;
  background: #00b7f1;
  color: white;
}

.learn-more-btn {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  background: white;
  color: var(--section-color);
  padding: 0.25rem 1.25rem;
  border-radius: 10em;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.learn-more-btn::after {
  content: "";
  border: solid var(--section-color);
  padding: 4px;
  width: 0.5rem;
  height: 0.5rem;
  border-width: 0 3px 3px 0;
  display: inline-block;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.learn-more-btn.invert {
  background: var(--section-color);
  color: white;
}
.learn-more-btn.invert::after {
  border-color: white;
}

.text-balance {
  text-wrap: balance;
}

.arrow {
  border: solid white;
  border-width: 0 5px 5px 0;
  display: inline-block;
  padding: 10px;
  cursor: pointer;
}
.arrow.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.arrow.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.arrow.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.arrow.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.arrow.disabled {
  opacity: 0.6;
  cursor: auto;
}

#galleryModal .close-btn {
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
  color: white;
  font-size: 1rem;
  padding: 0.5rem;
  background: #707070;
  z-index: 2;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  display: grid;
  place-content: center;
}
#galleryModal .modal-content {
  border-radius: 1rem;
}
#galleryModal .modal-body {
  padding: 0rem;
}
#galleryModal .modal-body .post-info {
  display: grid;
  padding: 0rem;
  border-radius: 1rem;
  overflow: hidden;
}
#galleryModal .modal-body .post-info > * {
  grid-area: 1/1;
}
#galleryModal .modal-body .post-info .post-img {
  position: relative;
  z-index: 1;
}
#galleryModal .modal-body .post-info .post-img img {
  width: 100%;
}
#galleryModal .modal-body .post-info .post-caption {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 1rem;
}
#galleryModal .modal-body .post-info .post-caption p {
  color: white;
  margin-bottom: 0rem;
}

.blue-btn {
  background: var(--pantai-blue);
  color: white;
  padding: 0.5em 1.5em;
  border-radius: 0.5rem;
  font-weight: bold;
}/*# sourceMappingURL=main.css.map */