@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/Playfair_Display/PlayfairDisplay-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/Playfair_Display/PlayfairDisplay-Italic-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Cabin";
  src: url("../fonts/Cabin/Cabin-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cabin";
  src: url("../fonts/Cabin/Cabin-Italic-VariableFont_wdth,wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  /* ========================== ROOT COLOR ==========================*/
  --c-primary: #2f5d50;
  /* Deep navy - Primary */
  --c-secondary: #fff6d5;
  --c-tertiary: #cbe1fc;
  --c-body: #f5f1e8;
  --c-black: #181c24;
  --c-menu: #515661;
  --c-label: #a5a9b7;
  /* Soft black */
  --c-info: #8a8f94;
  /* Cool gray */
  --c-primary-20: #ced9ea;
  --c-white: #ffffff;
  --c-grey: #b0b0b0;
  /* Neutral grey */
  --c-yellow: #fff039;
  /* Holding (Hasnur) Color */
  --c-red: #c62828;
  --c-border: #1e1e1e;
  --c-disabled: #dee1e8;
  --c-transparent: transparent;
  --c-skeleton: #2f72c40c;
  --c-hover: #2f73c4;
  --c-wa: #25d366;
  --shadow-bg: 0px 6px 18px rgb(0 0 0 / 8%);
  --shadow-skeleton: 0px 6px 18px rgb(0 0 0 / 3%);
  --ts-cubic: all 0.3s cubic-bezier(0.47, 0.71, 0.66, 0.84);

  /* ========================== ROOT TYPOGRAPHY ==========================*/
  --f-heading: "Playfair Display", sans-serif;
  --f-body: "Cabin", sans-serif;

  --fs-xs: 10px;
  --fs-s: 12px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-lg: 18px;
  --fs-xl: 24px;

  --l-h-s: 1;
  --l-h-sm: 1.25;
  --l-h-base: 1.6;
  --l-h-lg: 1.85;
  --f-w-light: 300;
  --f-w-regular: 400;
  --f-w-medium: 500;
  --f-w-semibold: 600;
  --f-w-bold: 700;
  --f-w-xbold: 800;
  --f-w-xxbold: 900;

  /* ========================== ROOT SPACING ==========================*/
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-xxl: 64px;
  --space-xxxl: 80px;

  /* ========================== ROOT RADIUS ==========================*/
  --rd-none: 0;
  --rd-sm: 4px;
  --rd-md: 8px;
  --rd-lg: 12px;
  --rd-xl: 16px;
  --rd-xxl: 20px;
  --rd-xxxl: 24px;
  --rd-50: 50%;

  /* ========================== ROOT TRANSITION ==========================*/
  --ts-fast: 0.2s ease-in-out;
  --ts-slow: 0.4s ease;
  --ts-standard: cubic-bezier(0.4, 0, 0.2, 1);
}

*,
::before,
::after,
hr,
hr::before,
hr::after,
input[type="search"],
input[type="search"]::before,
input[type="search"]::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

::selection {
  background: var(--c-primary);
  color: var(--c-white);
}

html,
body {
  font-family: var(--f-body);
  font-optical-sizing: auto;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: normal;
  font-weight: 400;
  font-style: normal;
  background-color: var(--c-body);
  color: var(--c-black);
  width: 100%;
  height: 100%;
  /* overflow-x: hidden; */
  overflow-y: overlay;
  transition: ease 0.3s;
}

body.no-scroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--f-heading);
  line-height: 1.2;
}

h1 {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
}

h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  font-size: 2.5rem;
  font-weight: 700;
}

h4 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
}

h5 {
  font-size: 1.5625rem;
  line-height: 1.5;
}

h6 {
  font-size: 1.25rem;
  line-height: 1.2;
}

p {
  font-size: 1rem;
  font-weight: 400;
}

p:last-child {
  margin-bottom: 0px;
}

small {
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0;
}

ul {
  list-style: none;
  padding: 0px;
  margin-left: 12px;
}

a {
  color: var(--c-primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  /* text-decoration: none; */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-font-smoothing: antialiased;
}

a:hover,
a:focus,
a:active {
  color: var(--c-primary);
}

span,
i {
  transition: all 0.3s;
}

figure,
address {
  margin: 0;
}

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

img.icon-16 {
  width: 1rem;
  height: 1rem;
}

img.icon-24 {
  width: 1.5rem;
  height: 1.5rem;
}

img.icon-32 {
  width: 2rem;
  height: 2rem;
}

img.icon-48 {
  width: 3rem;
  height: 3rem;
}

img.icon-64 {
  width: 4rem;
  height: 4rem;
}

.img-128 {
  width: 8rem;
}

.img-192 {
  width: 12rem;
}

.img-240 {
  width: 15rem;
}

.img-280 {
  width: 17.5rem;
}

.img-352 {
  width: 22rem;
}

.img-512 {
  width: 32rem;
}

.img-rounded {
  border-radius: 50%;
}

.shadow-bg {
  box-shadow: var(--shadow-bg);
}

hr {
  margin-top: 1.2496px;
  margin-bottom: 1.2496px;
  border: 0;
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
}

i {
  transition: all 0.3s;
}

.ts-03 {
  transition: ease-in-out 0.3s;
}

.ts-05 {
  transition: ease-in-out 0.5s;
}

.ts-spring {
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ========================== FORM FIELD ==========================*/

.form-control:focus,
.has-warning .form-control:focus,
.has-error .form-control:focus,
.has-success .form-control:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  color: var(--c-black);
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

input[type="search"]::-moz-search-clear-button {
  display: none;
}

.form-control[disabled] {
  border: 0;
  background-color: var(--c-disabled);
}

.form-control[disabled]:hover {
  border: 0;
}

.form-group {
  position: relative;
  margin-bottom: 1rem;
}

.form-group-icon {
  position: relative;
  height: 100%;
}

.form-group-icon input.form-control {
  padding-right: 1rem;
}

.form-group-icon .search-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #555;
  z-index: 10;
}

.form-group-icon input.form-control:focus {
  outline: none;
}

.form-group-icon input.form-control {
  padding-left: 3rem;
  border-radius: 14px 0px 0px 14px;
  border: 1px solid #ddd;
  font-size: 1rem;
  height: 100%;
}

.form-group-icon .clear-icon {
  position: absolute;
  right: 68px;
  font-size: 1rem;
  color: #999;
  cursor: pointer;
}

.section-contact-hero select.form-control {
  border: 1px solid #ddd;
}

.form-control::placeholder {
  opacity: 0.3;
}

.has-error .form-control {
  box-shadow: none;
}

input.form-control,
textarea.form-control {
  padding: 0.75rem;
  color: var(--c-black);
  font-weight: 500;
  background-color: var(--c-white);
  border: 1px solid var(--c-grey);
  border-radius: 8px;
  opacity: 1;
}

input.form-control::placeholder,
textarea.form-control::placeholder {
  color: #292929;
}

input.form-control:hover,
input.form-control:focus,
input.form-control:active {
  color: var(--c-black);
  background-color: var(--c-white);
  border-color: var(--c-primary);
}

input.form-control[readonly] {
  background-color: var(--c-disabled);
  cursor: default;
  border: 0;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

select.form-control {
  cursor: pointer;
  height: auto;
  padding: 0.5rem 2rem 0.5rem 1rem;
  font-size: 1rem;
  /* letter-spacing: 1rem; */
  font-weight: 500;
  /*background-color: 08284b;*/
  color: var(--c-primary);
  border: 1px solid var(--c-primary);
  border-radius: var(--rd-xxxl);
  -webkit-appearance: none;
  -moz-appearance: none;
  background-position: 90% 50%;
  background-repeat: no-repeat;
  background-image: url("../images/general/dd-b-bot.svg");
  background-size: 0.75rem;
  box-shadow: none;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

select.form-control:hover,
select.form-control:focus,
select.form-control:active {
  border-color: var(--c-primary);
  color: var(--c-primary);
}

.placeholder-select option[disabled] {
  opacity: 0.7;
}

.select2-container--default .select2-selection--single {
  height: 2.5rem !important;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1) !important;
  border: 0 !important;
  border-radius: 0 !important;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1) !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: var(--c-black) !important;
  font-size: 1rem !important;
  font-weight: 600;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0.3125rem !important;
}

ul.select2-results__options > li:hover {
  color: var(--c-black) !important;
  /* background-color: #ffe3b8 !important; */
}

.select2-container--default .select2-results__option--selected {
  color: var(--c-white) !important;
  background-color: var(--c-primary) !important;
}

.select2-results__option.select2-results__option--selectable.select2-results__option--selected.select2-results__option--highlighted {
  color: var(--c-white) !important;
  background-color: var(--c-primary) !important;
}

li.select2-results__option--selectable {
  color: var(--c-black) !important;
}

input.form-control:hover,
input.form-control:focus,
input.form-control:active,
textarea.form-control:hover,
textarea.form-control:focus,
textarea.form-control:active {
  color: #09041e;
  background-color: var(--c-white);
  border: 1px solid var(--c-primary);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

label {
  word-break: break-word;
}

label.control-label {
  position: relative;
  font-size: 1rem;
  color: var(--c-black);
  /* letter-spacing: .0625rem; */
  font-weight: 400;
  border-radius: 0;
  margin-left: 0;
  margin-bottom: 0.25rem;
}

.underline {
  text-decoration: underline;
}

/*====================================== SECTION MODAL SECTION ======================================*/
.modal {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-open {
  overflow: hidden !important;
  padding-right: 0 !important;
}

.modal-content {
  background-color: #fff;
  border: 0;
  border-radius: var(--rd-xl);
}

.modal-header {
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  /* margin: 0 1.5rem; */

  border-color: var(--c-transparent);
  border-bottom: 1px solid #d2d4dc;
}

.modal-title {
  padding: 0 2rem 0 0;
}

.modal-header .modal-close {
  z-index: 999;
  opacity: 1;
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.modal-header .btn-close {
  opacity: 1;
  background-image: none;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border: 0;
  padding: 0;
  border-radius: var(--rd-50);
  background-color: var(--c-red);
  color: var(--c-white);
  font-size: 18px;
  font-weight: var(--f-w-semibold);
  position: relative;
  transition: all 0.3s;
  box-shadow:
    0px 20px 50px rgba(0, 0, 0, 0.12),
    0px 6px 20px rgba(0, 0, 0, 0.26);
}

.modal-close .btn-close:hover,
.modal-header .btn-close:hover {
  outline: 0;
  opacity: 1;
  color: var(--c-white);
  background-color: var(--c-red);
}

.modal-body {
  height: 100%;
  padding: 1rem 1.5rem;
}

.modal.fade {
  overflow: hidden;
}

.modal.fade .modal-dialog {
  /* transition: transform 0.5s ease-in-out, filter 1s ease-out; */
  filter: blur(5px);
  transform: scale(1.2);
  opacity: 0;
  transition:
    transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.fade.show .modal-dialog {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
}

.modal-footer {
  border-top: 0.0625rem solid rgb(222, 226, 230);
  padding: 1rem;
  /*border: 0;*/
  text-align: center;
}

.modal-footer > * {
  margin: 0;
}

/*====================================== SECTION COMPONENT BUTTON ======================================*/

.btn {
  --bg-y: 100%;
  --r1: 50%;
  --r2: 50%;
  --r3: 0%;
  --r4: 0%;
  overflow: hidden;
  position: relative;
  border-radius: var(--rd-md);
  outline: none;
  padding: 0.625rem 1rem;
  font-family: var(--f-heading);
  font-weight: var(--f-w-bold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  isolation: isolate;
  will-change: transform;
  transition: all 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

.btn:focus-visible {
  outline: none;
}

.btn:focus {
  background-color: var(--c-primary);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-secondary);
  transform: translateY(var(--bg-y));
  z-index: 0;
  will-change: transform;
}

.btn .hover-layer i {
  display: block;
  transition: none !important;
}

.btn .hover-layer,
.btn .hover-layer * {
  transition: none !important;
}

.btn-primary {
  background: var(--c-primary);
  color: var(--c-white);
  border: none;
}

.btn-primary:hover {
  background: var(--c-primary);
  color: var(--c-white);
}

.btn-secondary {
  background: var(--c-transparent);
  color: var(--c-primary);
  border: 1px solid var(--c-primary);
}

.btn-secondary:hover {
  background-color: var(--c-transparent);
  color: var(--c-primary);
  border-color: var(--c-primary);
}

.btn-secondary:focus,
.btn-secondary:active {
  background-color: var(--c-transparent);
  border-color: var(--c-primary);
}

.btn-secondary span {
  color: var(--c-primary);
}

.btn-tertiary {
  background: var(--c-white);
  color: var(--c-primary);
  border: 1px solid var(--c-white);
}

.btn-tertiary:focus,
.btn-tertiary:active {
  color: var(--c-white);
}

.hover-layer {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  opacity: 0;
  /* transform: translateY(100%); */
  /* start di bawah */
  pointer-events: none;
  z-index: 7;
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn-check:focus + .btn,
.btn:focus,
.btn-check:active + .btn-primary:focus,
.btn-check:checked + .btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show > .btn-primary.dropdown-toggle:focus,
.btn-check:active + .btn-secondary:focus,
.btn-check:checked + .btn-secondary:focus,
.btn-secondary.active:focus,
.btn-secondary:active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: none !important;
}

.btn-link {
  background-color: var(--c-primary);
  color: var(--c-white);
  text-decoration: underline;
}

.btn-icon-r {
  width: 48px;
  height: 48px;
  padding: 0;
  background-color: var(--c-primary);
  border-radius: var(--rd-50);
  color: var(--c-white);
  transition: all 0.3s;
}

.btn-icon-r:hover {
  color: var(--c-white) !important;
}

.btn-transparent {
  border: 1px solid var(--c-primary);
  color: var(--c-primary);
  transition: all 0.3s;
}

.btn-transparent:hover {
  color: var(--c-white);
  background-color: var(--c-primary);
}

.btn-link:hover,
.btn-link:active,
.btn-link:focus {
  background-color: var(--c-transparent);
  color: var(--c-primary);
  text-decoration: underline;
}

.btn-load {
  color: var(--c-secondary);
}

.btn-load:before,
.btn-load:active,
.btn-load:focus {
  background-color: var(--c-secondary) !important;
}

.underline-cta {
  opacity: 0.4;
  width: 100%;
  height: 2px;
  background: transparent linear-gradient(90deg, #ee85ff 0%, #1eadc3 100%) 0% 0%
    no-repeat padding-box;
  opacity: 1;
}

.btn-google {
  border: 1px solid #e7e7e9;
  background-color: var(--c-white) !important;
  color: var(--c-black) !important;
}

.btn-google:hover {
  color: var(--c-black) !important;
  border-color: #dbdbde !important;
  box-shadow: none !important;
}

.btn-fb {
  background-color: #4267b2;
  color: var(--c-white) !important;
}

.btn-fb:hover {
  box-shadow: none !important;
}

.wa-bg {
  background-color: #25d366;
}

.btn-modal {
  background-color: var(--c-transparent);
  border: 0;
  padding: 0 !important;
  box-shadow: none;
}

#select-dropdown {
  margin-top: 0.25rem;
  background: transparent;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  outline: 0;
  display: block;
  text-align: left;
  font-size: 1rem;
  width: 100%;
  color: #5a5957;
  text-decoration: none;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 1;
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

#select-dropdown.open {
  opacity: 0;
}

.button-group {
  position: relative;
  width: 13.5rem;
}

.button-group .marka {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  z-index: 9999;
}

.button-group .marka i {
  background: grey !important;
}

.marka-icon-times {
  border: 1px solid grey;
  border-radius: 50%;
  top: 0.25rem !important;
  right: 0.25rem !important;
}

#dropdown-menu {
  position: absolute;
  top: -1rem;
  right: 0;
  left: 0;
  margin: 1rem auto;
  padding: 0.5rem 1rem;
  width: 100%;
  list-style: none;
  text-align: left;
  border-radius: 0.25rem;
  background: var(--c-white);
  transition: all 350ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: box-shadow 0.5s ease-out;
  box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.18);
}

#dropdown-menu li {
  position: relative;
  line-height: 1.5rem;
  margin-bottom: 1rem;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
  opacity: 0;
}

#dropdown-menu li:nth-last-child(1) {
  margin-bottom: 0;
}

#dropdown-menu li:hover {
  background-color: #33b8c41a;
}

#dropdown-menu li a {
  color: #5a5957;
  text-decoration: none;
  font-size: 1rem;
}

#dropdown-menu.open {
  -webkit-transform: scale(1);
  transform: scale(1);
}

#dropdown-menu.open li {
  transition: all 350ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.open li:nth-child(1) {
  transition-delay: 0.07s !important;
}

.open li:nth-child(2) {
  transition-delay: 0.14s !important;
}

.open li:nth-child(3) {
  transition-delay: 0.21s !important;
}

.open li:nth-child(4) {
  transition-delay: 0.28s !important;
}

.open li:nth-child(5) {
  transition-delay: 0.35s !important;
}

/*====================================== SECTION COMPONENT WORDING ======================================*/
.sc-main {
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--c-black);
  transition: all 0.3s;
}

.sc-xxl {
  font-size: 6.25rem !important;
}

.sc-xl {
  font-size: 1.5rem !important;
}

.sc-l {
  font-size: 1.375rem !important;
}

.sc-m {
  font-size: 1.125rem !important;
  font-weight: 300;
}

.sc-s {
  font-size: 1rem !important;
}

.sc-s-light {
  font-size: 1rem !important;
  font-weight: 300 !important;
}

.sc-sm {
  font-size: 0.875rem !important;
  line-height: 1.4;
}

.sc-xs {
  font-size: 0.75rem !important;
}

span.sc-xs {
  font-weight: 400;
}

.sta-ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.sc-break {
  white-space: normal;
  word-wrap: break-word;
}

.ls-1 {
  letter-spacing: 1px;
}

.ls-2 {
  letter-spacing: 2px;
}

.ls-3 {
  letter-spacing: 3px;
}

.c-small {
  font-size: 0.625rem;
  line-height: 1.5;
}

.c-title,
footer .footer-list .c-title span {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
}

.c-primary {
  color: var(--c-primary) !important;
}

.c-secondary {
  color: var(--c-secondary) !important;
}

.c-tertiary {
  color: var(--c-tertiary) !important;
}

.c-white {
  color: var(--c-white) !important;
}

.c-black {
  color: var(--c-black) !important;
}

.c-menu {
  color: var(--c-menu) !important;
}

.c-label {
  color: var(--c-label) !important;
}

.c-info {
  color: var(--c-info) !important;
}

.c-primary-20 {
  color: var(--c-primary-20) !important;
}

.c-red {
  color: var(--c-red) !important;
}

.c-grey {
  color: var(--c-grey) !important;
}

.c-border {
  color: var(--c-border) !important;
}

.c-green {
  color: var(--c-y-green) !important;
}

.c-card {
  color: var(--c-card) !important;
}

.bg-card {
  background-color: var(--c-card) !important;
}

.bg-body {
  background-color: var(--c-body) !important;
}

.c-wa {
  color: var(--c-wa) !important;
}

.f-head {
  font-family: var(--f-heading);
}

.f-body {
  font-family: var(--f-body);
}

.f-xxxl {
  font-size: 3.75rem !important;
}

.f-xxl {
  font-size: 3rem !important;
}

.f-xl {
  font-size: 2.5rem !important;
}

.f-lg {
  font-size: 2rem !important;
}

.f-sl {
  font-size: 1.5625rem !important;
}

.f-md {
  font-size: 1.25rem !important;
}

.f-base {
  font-size: 1rem !important;
}

.f-sm {
  font-size: 0.875rem !important;
}

.f-xs {
  font-size: 0.75rem !important;
}

.f-xxs {
  font-size: 0.5rem !important;
}

.light {
  font-weight: var(--f-w-light) !important;
}

.regular {
  font-weight: var(--f-w-regular) !important;
}

.medium {
  font-weight: var(--f-w-medium) !important;
}

.semi-bold {
  font-weight: var(--f-w-semibold) !important;
}

.bold {
  font-weight: var(--f-w-bold) !important;
}

.x-bold {
  font-weight: var(--f-w-xbold) !important;
  /* letter-spacing: 1; */
}

.xx-bold {
  font-weight: var(--f-w-xxbold);
}

.lh-0-8 {
  list-style: 0.8;
}

.lh-0-7 {
  list-style: 0.7;
}

.lh-0-6 {
  line-height: 0.6;
}

.lh-0-5 {
  line-height: 0.5;
}

.lh-1 {
  line-height: 1;
}

.lh-1-1 {
  line-height: 1.1;
}

.lh-1-2 {
  line-height: 1.2;
}

.lh-1-3 {
  line-height: 1.3;
}

.lh-1-4 {
  line-height: 1.4;
}

.lh-1-5 {
  line-height: 1.5;
}

.box-shadow {
  -webkit-transition: box-shadow 0.5s ease-out;
  box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.5s ease-out;
}

.no-pad {
  padding: 0;
}

.rd-none {
  border-radius: var(--rd-none) !important;
}

.rd-sm {
  border-radius: var(--rd-sm) !important;
}

.rd-md {
  border-radius: var(--rd-md) !important;
}

.rd-lg {
  border-radius: var(--rd-lg) !important;
}

.rd-xl {
  border-radius: var(--rd-xl) !important;
}

.rd-xxl {
  border-radius: var(--rd-xxl) !important;
}

.rd-xxxl {
  border-radius: var(--rd-xxxl) !important;
}

.rd-50 {
  border-radius: var(--rd-50) !important;
}

.rdtl-rdtr {
  border-top-left-radius: var(--rd-xl) !important;
  border-top-right-radius: var(--rd-xl) !important;
}

.rdbl-rdbr {
  border-bottom-left-radius: var(--rd-xl) !important;
  border-bottom-right-radius: var(--rd-xl) !important;
}

.rdtr-rdbr {
  border-top-right-radius: var(--rd-xl) !important;
  border-bottom-right-radius: var(--rd-xl) !important;
}

.br-primary {
  border-color: var(--c-primary);
}

.br-red {
  border-color: var(--c-red);
}

.br-dark {
  border-color: var(--c-border);
}

.no-transform {
  text-transform: none !important;
}

.bg-primary {
  background-color: var(--c-primary) !important;
}

.bg-primary-gd {
  background: var(--primary-gd) !important;
}

.bg-secondary {
  background-color: var(--c-secondary) !important;
}

.bg-white {
  background-color: var(--c-white) !important;
}

.bg-grey {
  background-color: var(--c-grey) !important;
}

.bg-black {
  background-color: var(--c-black) !important;
}

.bg-red {
  background-color: var(--c-red) !important;
}

.bg-transparent {
  background-color: var(--c-transparent) !important;
}

.bg-wa {
  background-color: #25d366 !important;
}

.bg-fb {
  background-color: #4267b2 !important;
}

.c-whatsapp {
  color: #25d366 !important;
}

.w-fit {
  width: fit-content;
}

.h-fit {
  height: fit-content;
}

.max-16 {
  max-width: 1rem !important;
}

.max-24 {
  max-width: 1.5rem !important;
}

.max-32 {
  max-width: 2rem !important;
}

.max-40 {
  max-width: 2.5rem !important;
}

.max-48 {
  max-width: 3rem !important;
}

.max-64 {
  max-width: 4rem !important;
}

.max-84 {
  max-width: 5.25rem !important;
}

.max-100 {
  max-width: 6.25rem !important;
}

.max-112 {
  max-width: 7rem !important;
}

.max-128 {
  max-width: 8rem !important;
}

.max-140 {
  max-width: 8.75rem !important;
}

.max-160 {
  max-width: 10rem !important;
}

.max-240 {
  max-width: 15rem !important;
}

.max-280 {
  max-width: 17.5rem !important;
}

.max-320 {
  max-width: 20rem !important;
}

.max-360 {
  max-width: 22.5rem !important;
}

.max-400 {
  max-width: 25rem !important;
}

.max-480 {
  max-width: 30rem !important;
}

.max-560 {
  max-width: 35rem !important;
}

.max-640 {
  max-width: 40rem !important;
}

.max-720 {
  max-width: 45rem !important;
}

.max-840 {
  max-width: 52.5rem !important;
}

.max-1024 {
  max-width: 64rem !important;
}

.max-1140 {
  max-width: 71.25rem !important;
}

.z-m-3 {
  z-index: -3;
}

.z-m-2 {
  z-index: -2;
}

.z-m-1 {
  z-index: -1;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.z-3 {
  z-index: 3;
}

.z-4 {
  z-index: 4;
}

.z-5 {
  z-index: 5;
}

.border-color-grey {
  border-color: var(--c-grey) !important;
}

.subject-title {
  max-width: 48rem;
}

.subject-desc,
.subject-info {
  max-width: 64rem;
}

.sticky-subhead {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.no-result {
  background-color: var(--c-primary-500);
  padding: 1rem;
  text-align: center;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}

.cover {
  object-fit: cover;
}

.c-default {
  cursor: default;
}

.pointer {
  cursor: pointer;
}

.no-selection {
  user-select: none;
}

.p-none {
  pointer-events: none;
}

/* ========================== GSAP ANIMATION UTILITIES ========================== */

/* Cinematic overlay wipe reveal */
.gsap-img-reveal {
  position: relative;
  overflow: hidden;
}
.gsap-img-reveal__cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-color: var(--c-primary);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
  will-change: transform;
}

/* Horizontal line grow */
.gsap-line-reveal {
  transform-origin: left center;
  will-change: transform;
}

.line-clamp-1 {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: break-word;
}

.line-clamp-2 {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: break-word;
}

.line-clamp-3 {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: break-word;
}

.line-clamp-4 {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: break-word;
}

.line-clamp-5 {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: break-word;
}

.wrap-text {
  white-space: normal;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}

.custom-choose {
  display: flex;
}

.custom-choose input[type="checkbox"],
.custom-choose input[type="radio"] {
  display: none;
}

.custom-choose input[type="checkbox"] + label,
.custom-choose input[type="checkbox"]:not(checked) + label,
.custom-choose input[type="radio"] + label,
.custom-choose input[type="radio"]:not(checked) + label {
  cursor: pointer;
  padding: 12px 32px;
  border: solid 1px var(--c-transparent);
  background-color: var(--c-body);
  border-radius: 0.5rem;
  text-align: center;
  font-size: 16px;
  transition: all ease-in-out 0.3s;
}

.custom-choose input[type="checkbox"]:checked + label,
.custom-choose input[type="radio"]:checked + label {
  position: relative;
  border: solid 1px var(--c-primary);
  background-color: var(--c-body);
  color: var(--c-primary);
  transition: all ease-in-out 0.3s;
}

.faq-accordion .accordion-item .accordion-body :where(ul),
.modalcareer-applicant--body :where(ul),
.pillar-card--surface :where(ul),
.about-intermezo-left--desc :where(ul),
.section-obd-intermezo .about-content--body-desc :where(ul) {
  list-style: disc;
  padding-left: 1rem;
  margin-left: 0;
  list-style-position: outside;
}

.finance-accordion .accordion-item .accordion-body :where(ol),
.modalcareer-applicant--body :where(ol),
.pillar-card--surface :where(ol),
.about-intermezo-left--desc :where(ol),
.section-obd-intermezo .about-content--body-desc :where(ol) {
  list-style: decimal;
  padding-left: 1rem;
  margin-left: 0;
  list-style-position: outside;
}

/*====================================== SECTION NAVBAR ======================================*/
header {
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 777;
  will-change: transform;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  transition: all 0.5s;
}

header nav {
  position: relative;
  /* overflow: hidden; */
  width: 100%;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans-cubic);
}

header nav .container-fluid {
  max-width: 1320px;
  padding: 0;
}

header nav ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.close-menu {
  cursor: pointer;
  position: absolute;
  top: 10px;
  left: 85%;
}

.close-menu span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  font-size: 20px;
  color: #000233;
  text-align: center;
  box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.18);
}

.container-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10rem;
}

.container-nav .nav-logo {
  width: 200px;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 1;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

select.form-control:has(+ input:focus),
select.form-control:has(+ input:focus-within) {
  opacity: 0;
}

.container-nav .nav-menu {
  /* position: relative; */
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  flex-basis: auto;
  gap: 16px;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 3;
}

.container-nav .nav-menu ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  text-align: center;
  margin: 0;
}

.container-nav .nav-menu li a {
  font-size: 16px;
  font-weight: 600;
  padding: 8px;
  color: var(--c-white);
  transition: all 0.3s;
}

.container-nav .nav-menu li a:hover {
  color: var(--c-primary) !important;
}

.scroll#navigation {
  background-color: var(--c-body) !important;
  box-shadow: 1px 9px 18px -4px rgba(0, 0, 0, 0.49);
  -webkit-box-shadow: 1px 9px 18px -4px rgba(0, 0, 0, 0.49);
  -moz-box-shadow: 1px 9px 18px -4px rgba(0, 0, 0, 0.49);
}
.scroll#navigation .container-nav .nav-menu li a,
.scroll#navigation .container-nav .nav-menu li a:hover {
  color: var(--c-primary) !important;
}

.container-nav .nav-menu li.active > a,
.menu-container-mobile .menu-nav-mobile li.active > a {
  color: var(--c-primary);
  font-weight: 700;
}

.nav-menu-right {
  margin-left: auto;
}

.nav-toggle {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 3;
  display: none;
  z-index: 10;
  position: relative;
  cursor: pointer;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  box-shadow: none;
  border: none;
  background-color: var(--c-transparent);
}

.nav-toggle span {
  display: block;
  opacity: 1;
  width: 20px;
  height: 2px;
  border-radius: 20px;
  background-color: var(--c-primary);
  font-size: 16px;
  transition: var(--trans-cubic);
}

.nav-toggle span:nth-child(2) {
  width: 15px;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(-45deg);
}

.nav-toggle.active span:nth-child(2) {
  transform: translateX(-30px);
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(45deg);
}

.nav-logo .text-logo {
  max-width: 120px;
}

.nav-submenu-wrapper {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.nav-submenu-wrapper a span {
  color: var(--c-primary);
}

.nav-item-what-we-do.show-submenu .nav-submenu-wrapper {
  display: block;
}

.nav-item-what-we-do.show-submenu.animate-submenu .nav-submenu-wrapper {
  flex-direction: column;
  transform: translateY(0);
  pointer-events: auto;
  opacity: 1;
  top: 3.5rem;
}

.nav-item-mobile-accordion .accordion-item,
.nav-item-mobile-accordion .accordion-collapse {
  border-bottom-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
}

.nav-submenu-wrapper .nav-submenu-content {
  text-align: left;
  background-color: var(--c-white);
  padding: 1rem 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-submenu-wrapper .nav-submenu-content a.active {
  color: var(--c-primary);
  font-weight: 700;
}

.nav-item-mobile-accordion.active .accordion-button {
  font-weight: 700;
}

.nav-item-mobile-accordion .accordion-button {
  padding: 0rem !important;
  box-shadow: unset !important;
}

.menu-container-mobile .menu-nav-mobile li:last-child {
  margin-bottom: 0;
}

.nav-link-main {
  cursor: default;
}

.nav-menu .menu-nav {
  display: block;
}

.nav-hamburger {
  display: none;
  width: auto;
  height: auto;
  flex-direction: column;
  gap: 6px;
}

.nav-hamburger span.bar {
  display: block;
  background-color: var(--c-black);
  height: 2px;
  border-radius: var(--rd-xl);
}

.nav-hamburger .bar-top,
.nav-hamburger .bar-bot {
  width: 16px;
}

.nav-hamburger .bar-top {
  transition: all 0.6s ease;
  transition-delay: 0.2s;
}

.nav-hamburger .bar-middle {
  transition: all 0.6s ease;
  transition-delay: 0.3s;
}

.nav-hamburger .bar-bot {
  transition: all 0.8s ease;
  transition-delay: 0.1s;
}

.nav-hamburger .bar-middle {
  width: 24px;
}

/* === ACTIVE STATE === */
.nav-hamburger.active .bar-top {
  width: 24px;
  transform: rotate(45deg) translate(7px, 9px);
}

.nav-hamburger.active .bar-middle {
  width: 24px;
  transform: rotate(-45deg) translate(-3px, 1px) translateX(0px);
}

.nav-hamburger.active .bar-bot {
  filter: blur(4px);
  -webkit-filter: blur(4px);
  transform: scale(2) translate(-1px, -4px);
  height: 8px;
  /* border-radius: 50%; */
  opacity: 0.4;
}

.language-toggle {
  width: 80px;
  height: 40px;
  background-color: #e6edf6;
  border-radius: var(--rd-md);
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.language-toggle span {
  z-index: 2;
  font-weight: 500;
  color: black;
  transition: color 0.3s ease;
}

.toggle-circle {
  position: absolute;
  width: 32px;
  height: 32px;
  background: var(--c-white);
  border-radius: var(--rd-sm);
  top: 4px;
  left: 4px;
  transform: translateX(0);
  transition: transform 0.3s ease;
  z-index: 1;
}

.language-toggle.en-active .toggle-circle {
  transform: translateX(38px);
}

.lang-id-text,
.lang-en-text {
  position: absolute;
  font-size: 14px;
  transition: color 0.3s;
  color: var(--c-black);
}

.lang-id-text {
  left: 12px;
}

.lang-en-text {
  right: 12px;
}

.lang-id-text.active,
.lang-en-text.active {
  color: var(--c-primary);
  font-weight: 700 !important;
}

.menu-container-mobile {
  z-index: 480;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  height: 0;
  width: 100%;
  position: fixed;
  background-color: white;
  box-shadow: -4px 0px 18px 4px rgb(0 0 0 / 14%);
  bottom: 0;
  right: 0;
}

.btn-back {
  position: absolute;
  top: 25px;
  margin-left: 12px;
  padding: 0;
  opacity: 0.5;
  background: none;
  border: none;
  color: var(--c-black);
  font-size: 16px;
  cursor: pointer;
  z-index: 20;
}

.btn-back:focus {
  outline: none;
}

/* Component */
@media only screen and (min-width: 1025px) and (max-width: 1225px) {
  .container-nav .nav-menu li a {
    font-size: 16px;
  }
}

.cursor-none {
  cursor: default !important;
}

.pointer-none {
  pointer-events: none !important;
}

.swiper {
  overflow: clip;
}

.swiper-container {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.cta-swiper-wrapper {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.swiper-slide {
  background: transparent;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-wrapper .swiper-slide > a {
  width: 100%;
}

.swiper-button-next {
  opacity: 1;
  right: 0px;
  padding: 18px;
  border-radius: 50%;
  /* box-shadow: 0px 0px 10px 0px hsl(0deg 0% 0% / 25%); */
}

.swiper-button-prev {
  opacity: 1;
  left: 0px;
  padding: 18px;
  border-radius: 50%;
  /* box-shadow: 0px 0px 10px 0px hsl(0deg 0% 0% / 25%); */
}

.swiper-button-next,
.swiper-button-prev {
  position: static;
  top: 45%;
  width: 2rem !important;
  height: 2rem !important;
  color: var(--c-black);
  border: 1px solid var(--c-black);
  background-color: var(--c-transparent);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: all 0.3s;
}

.swiper-button-next span,
.swiper-button-next i,
.swiper-button-prev span,
.swiper-button-prev i {
  transition: all 0s !important;
  line-height: normal !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  /* transform: scale(1.1); */
  background-color: var(--c-black);
  color: var(--c-white);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  opacity: 0;
  display: none;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.2;
}

.swiper-button-next.br-white,
.swiper-button-prev.br-white {
  top: 45%;
  width: 2rem !important;
  height: 2rem !important;
  color: var(--c-white);
  border: 1px solid var(--c-white);
  background-color: var(--c-transparent);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: all 0.3s;
}

.cta-swiper-home .swiper-bp-prev,
.cta-swiper-home .swiper-home-services-prev {
  left: 0;
}

.cta-swiper-home .swiper-bp-next,
.cta-swiper-home .swiper-home-services-next {
  right: 0;
}

.swiper-button-prev.br-white:hover,
.swiper-button-next.br-white:hover {
  /* transform: scale(1.1); */
  background-color: var(--c-white);
  color: var(--c-black);
}

.section-career-testimoni
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--c-white);
  opacity: 1;
}

.bullet-wrapper.bullet-filled .swiper-pagination-bullet {
  border: 2px solid var(--c-transparent);
  background: var(--c-primary);
  opacity: 1;
}

.clipped-path {
  padding: 5px 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 1s;
}

.outline-font {
  color: rgba(170, 49, 250, 1);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--c-primary);
}

.outline-font.outline-green {
  color: rgba(117, 231, 248, 1);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--c-secondary);
}

section {
  margin: 0 auto;
  padding: 4rem 0;
}

.section-hero-top {
  padding-top: 8rem;
}

.container-fluid {
  margin: 0 auto;
}

.section-hero {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section-hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: transparent;
  background-image: linear-gradient(180deg, #202833 0%, #1f1f219e 100%);
  opacity: 0.8;
  transition:
    background 0.3s,
    border-radius 0.3s,
    opacity 0.3s;
}

/* Munculkan kembali setelah SplitType bekerja */
.split-text.splitting,
.split-text.split-type {
  visibility: visible;
}

.split-text .char {
  display: inline-block; /* Wajib agar transformasi Y dan Rotate jalan */
}

/*====================================== SECTION COMPONENT ELEMENT ======================================*/
.hero-container {
  padding: 10rem 0 5rem 0;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 35rem;
  /* height: 40dvh; */
}

.hero-container::before {
  /* display: none; */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #194495;
  background: linear-gradient(
    148deg,
    rgba(25, 68, 149, 1) 0%,
    rgba(54, 97, 166, 0.9) 30%,
    rgb(255 255 255 / 15%) 60%,
    rgba(255, 255, 255, 0) 100%
  );
}

.hero-container::after {
  /* display: none; */
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 240px;
  background: #f5f9fd;
  background: linear-gradient(
    0deg,
    rgba(245, 249, 253, 1) 5%,
    rgba(255, 255, 255, 0) 100%
  );
}

.hero-ornament {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 320px;
  height: 320px;
  background-image: url("../images/general/graph-hais-hero.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom left;
}

.breadcrumb-wrapper {
  overflow: hidden;
  white-space: nowrap;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--fs-base);
  white-space: nowrap;
  overflow: hidden;
}

.breadcrumb-list li {
  min-width: 0;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  color: #ced9ea;
  font-weight: var(--f-w-medium);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumb-list li + li::before {
  content: "/";
  margin: 0 8px;
  color: #9db5d4;
}

.breadcrumb-list a {
  text-decoration: none;
  color: #9db5d4;
  font-weight: var(--f-w-medium);
}

.breadcrumb-list a:hover {
  text-decoration: underline;
}

.breadcrumb-list li[aria-current="page"] {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.text-animate-wrap {
  padding: 5px 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 1s;
}

.text-animate {
  perspective: 500px;
}

.about-content--head-desc {
  max-width: 75%;
}

[id^="section-"] {
  scroll-margin-top: 80px;
}

.menu-sidebar-mobile {
  display: none;
}

.menu-sidebar {
  position: sticky;
  top: 100px;
  background-color: var(--c-white);
  padding: 1rem 0.5rem;
  border-radius: var(--rd-lg);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

.menu-sidebar--ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-sidebar--nav .menu-sidebar--link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--rd-lg);
  font-weight: var(--f-w-semibold);
  color: var(--c-menu);
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.menu-sidebar--nav .menu-sidebar--icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.menu-sidebar--list:hover .menu-sidebar--link {
  color: var(--c-primary);
}

.menu-sidebar--list.active .menu-sidebar--link {
  background-color: var(--c-tertiary);
  color: var(--c-primary);
}

.menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 14px 16px;
  border-radius: 16px;
  text-decoration: none;
  background: #e5f0ff;
  color: #164194;
  font-weight: 600;
}

.chev {
  width: 24px;
  height: 24px;
  transition: transform 0.25s ease;
}

.menu-sidebar--list.is-open .chev {
  transform: rotate(180deg);
}

.menu-sidebar--toggle {
  outline: 0;
  width: 100%;
  box-shadow: none;
  border: none;
  overflow: hidden;
  background: var(--c-white);
  cursor: pointer;
  text-decoration: none;
  color: var(--c-menu);
  font-weight: var(--f-w-semibold);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--rd-lg);
  transition: all 0.3s;
}

.menu-sidebar--list.is-open .menu-sidebar--toggle {
  background-color: #edf5fe;
  color: var(--c-primary);
}

.menu-sidebar--submenu > li.submenu-sidebar--list .submenu-link {
  list-style: none;
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--rd-lg);
  /* font-weight: var(--f-w-semibold); */
  color: var(--c-menu);
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.menu-sidebar--toggle:hover,
.menu-sidebar--submenu > li.submenu-sidebar--list .submenu-link:hover,
.menu-sidebar--submenu > li.submenu-sidebar--list.active .submenu-link {
  color: var(--c-primary);
}

.menu-sidebar--submenu > li.submenu-sidebar--list.active .submenu-link {
  background-color: var(--c-tertiary);
}

@media (prefers-reduced-motion: reduce) {
  .chev {
    transition: none;
  }
}

.nav-primary {
  padding: 0.25rem;
}

.nav-primary .nav-pills {
  gap: 0.5rem;
  width: fit-content;
  padding: 0.25rem;
  margin-left: 0;
  border-radius: var(--rd-xxl);
  justify-content: center;
  background-color: rgb(246 246 246);
}

.nav-primary li.nav-item {
  background-color: rgb(246 246 246);
  border-radius: var(--rd-xxl);
}

.nav-primary li.nav-item .nav-link {
  color: var(--c-info);
  border: 1px solid var(--c-transparent);
  border-radius: var(--rd-xl);
  padding: 0.5rem 1rem;
  font-weight: var(--f-w-medium);
  transition: all 0.3s;
}

.nav-primary .nav-pills .nav-link.active,
.nav-primary .nav-pills .show > .nav-link {
  background-color: var(--c-primary);
  font-weight: var(--f-w-semibold);
}

.nav-primary .nav-pills .nav-link.active {
  color: var(--c-white);
  padding: 0.5rem 1.5rem;
}

.nav-primary .nav-pills .nav-link.active:focus,
.nav-primary .nav-pills .nav-link.active:hover,
.nav-primary .nav-pills .nav-link.active:active,
.nav-primary .nav-pills .nav-link.active:target {
  color: var(--c-white) !important;
}

.nav-secondary {
  padding: 0.25rem;
  width: fit-content;
  margin: 0 auto;
  background-color: #e5edf6;
  border-radius: var(--rd-xxl);
}

.nav-secondary .nav-pills {
  width: fit-content;
  display: flex;
  gap: 1rem;
  justify-content: start;
  flex-wrap: nowrap;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0.5rem;
  border-radius: var(--rd-xxl);
  background-color: #e5edf6;
}

.nav-secondary .nav-pills:active {
  cursor: grabbing;
}

.nav-secondary .nav-pills::-webkit-scrollbar {
  display: none;
}

.nav-secondary li.nav-item {
  background-color: #e5edf6;
  border-radius: var(--rd-xxl);
}

.nav-secondary li.nav-item .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: var(--c-menu);
  border: 1px solid var(--c-transparent);
  border-radius: var(--rd-xl);
  padding: 0.75rem 1rem;
  font-weight: var(--f-w-semibold);
  box-shadow: 0 0 0 rgba(22, 65, 148, 0);
  transition: all 0.3s;
}

.nav-secondary li.nav-item,
.nav-secondary .nav-pills .nav-link {
  flex-shrink: 0;
}

.nav-secondary li.nav-item .nav-link .nav-item--icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: all 0.3s;
}

.nav-secondary .nav-pills .nav-link.active,
.nav-secondary .nav-pills .show > .nav-link {
  background-color: var(--c-white);
  font-weight: var(--f-w-semibold);
}

.nav-secondary .nav-pills .nav-link.active {
  color: var(--c-primary);
  transform: scale(1.025);
  box-shadow:
    0 1px 16px rgba(22, 65, 148, 0.1),
    0 1px 32px rgba(22, 65, 148, 0.01);
}

.nav-secondary .nav-pills .nav-link.active .nav-item--icon {
  transform: scale(1.1);
}

.nav-secondary .nav-pills .nav-link.active:focus,
.nav-secondary .nav-pills .nav-link.active:hover,
.nav-secondary .nav-pills .nav-link.active:active,
.nav-secondary .nav-pills .nav-link.active:target {
  color: var(--c-primary) !important;
}

/*====================================== SECTION HOME PAGE ======================================*/
section.section-hero-home {
  position: relative;
  height: 100vh;
  width: 100%;
  padding: 0;
  overflow: hidden;
  content-visibility: visible;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-hero-home .container {
  position: relative;
  z-index: 2;
}

.section-hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    #f5f1e8 0%,
    rgba(245, 241, 232, 0.9) 10%,
    rgba(245, 241, 232, 0.4) 50%,
    rgba(245, 241, 232, 0) 100%
  );
  z-index: 1;
}
.home-gallery--swiper-outer {
  display: none !important;
}

.home-gallery--swiper-container {
  height: 260px;
}

.home-gallery--swiper-container .swiper-slide {
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.home-gallery--swiper-container .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.home-gallery--swiper-container .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-gallery--swiper-pagination {
  text-align: center;
  margin-top: 1rem;
}

.home-gallery--swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--c-primary);
}

.home-gallery-card {
  position: relative;
  overflow: hidden;
}

.home-gallery-image {
  display: block;
  position: relative;
  overflow: hidden;
}

.home-gallery-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.home-gallery-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(47, 93, 80, 0.55) 0%,
    rgba(47, 93, 80, 0.9) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.home-gallery-image--icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.home-gallery-image--icon i {
  font-size: 1.75rem;
  color: #fff;
}

.home-gallery-image:hover img {
  transform: scale(1.08);
}

.home-gallery-image:hover::after {
  opacity: 1;
}

.home-gallery-image:hover .home-gallery-image--icon {
  opacity: 1;
  transform: scale(1);
}

.hero-home {
  z-index: 9;
  position: relative;
  z-index: 2;
  padding: 5.5rem 0 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  height: 100svh;
}

.hero-home--wrapper {
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: 100%;
  height: 100%;
  margin-top: auto;
  padding-bottom: 5rem;
}

.hero-home--title {
  max-width: 45rem;
}

.home-usp--desc .usp-info--list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-usp--desc .usp-info-item--icon {
  font-size: 0.25rem;
}

.section-home-services {
  padding: 4rem 0;
  background-image: url("../images/home-services-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--c-secondary);
}

.services-card .services-card--asset img {
  transition: transform 1.5s ease-out;
}

.services-card:hover .services-card--asset img {
  transform: scale(1.25);
  transition: transform 5s ease-out;
}

.services-card--asset {
  height: 520px;
  position: relative;
  overflow: hidden;
}

.services-card--asset::before {
  z-index: 1;
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(47, 93, 80, 0) 0%,
    rgba(47, 93, 80, 1) 95%
  );
  border-radius: var(--rd-lg);
  transition: all 0.5s ease-out;
}

.services-card:hover .services-card--asset::before {
  opacity: 0.6;
}

.services-card .services-card--desc-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.5rem;
  transition: all 0.5s;
}

.services-card:hover .services-card--label span {
  transform: translateX(5px);
}

.section-closing {
  position: relative;
  padding: 15rem 0rem;
  background-image: url("../images/section-closing-bg-asset.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.section-closing::before {
  z-index: 1;
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(47, 93, 80, 0) 50%,
    rgba(47, 93, 80, 1) 95%
  );
  backdrop-filter: blur(1px);
}

.grid {
  margin: 0 auto;
  max-width: 1200px;
}

.grid:after {
  content: "";
  display: block;
  clear: both;
}

.grid-sizer,
.grid-item {
  width: 320px;
}

.grid-item {
  float: left;
  margin-bottom: 10px;
}

.grid-item:nth-child(3n) img {
  height: 250px;
  object-fit: cover;
}

.grid-item:nth-child(4n) img {
  height: 280px;
  object-fit: cover;
}

.grid-item img {
  display: block;
  width: 100%;
}

.home-gallery-card {
  background-color: var(--c-white);
  padding: 1rem;
}

/*====================================== SECTION PAGE HERO ======================================*/

.section-page-hero {
  position: relative;
  height: 75vh;
  min-height: 28rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0;
  overflow: hidden;
}

.section-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    #f5f1e8 0%,
    rgba(245, 241, 232, 0.9) 10%,
    rgba(245, 241, 232, 0.4) 50%,
    rgba(245, 241, 232, 0) 100%
  );
  z-index: 1;
}

/*====================================== SECTION TENTANG KAMI PAGE ======================================*/

.about-hero {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 75vh;
  min-height: 28rem;
  display: flex;
  align-items: flex-end;
  padding: 5.5rem 0 4rem;
}

.about-hero--content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 50rem;
}

.about-hero--eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.about-hero--eyebrow span {
  display: inline-block;
  width: 2rem;
  height: 2px;
  background-color: var(--c-secondary);
}

.about-hero--eyebrow p {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-about-story {
  padding: 5rem 0;
}

.section-about-story h2 {
  position: sticky;
  top: 6rem;
}

.section-about-story .row {
  align-items: flex-start;
  row-gap: 2rem;
}

.about-story--body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-values-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-values--item {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-values--item-misi {
  margin-top: 14rem;
}

.about-values--label {
  display: inline-block;
  background-color: var(--c-primary);
  color: var(--c-white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  border-radius: var(--rd-sm);
  width: fit-content;
}

.about-values--mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/*====================================== SECTION ACTIVITY PAGE ======================================*/
.detail-hero {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 75vh;
  min-height: 28rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5.5rem 0 4rem;
}

.breadcrumb-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 0;
}

.breadcrumb-nav--item {
  display: flex;
  align-items: center;
}

.breadcrumb-nav--item a {
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.breadcrumb-nav--item a:hover {
  opacity: 1;
}

.breadcrumb-nav--sep {
  margin: 0 0.5rem;
  opacity: 0.45;
}

.breadcrumb-nav--current {
  opacity: 0.6;
}

.detail-hero--back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 246, 213, 0.88);
  color: var(--c-primary);
  padding: 0.45rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
  width: fit-content;
}

.detail-hero--back:hover {
  background-color: var(--c-secondary);
  color: var(--c-primary);
  transform: translateX(-4px);
}

.detail-hero--content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 50rem;
}

.section-detail-overview {
  padding: 5rem 0;
}

.detail-overview--image {
  height: 480px;
  border-radius: var(--rd-lg);
  overflow: hidden;
}

.detail-overview--highlight-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-overview--highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.detail-overview--highlight-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c-secondary);
  border-radius: var(--rd-md);
  flex-shrink: 0;
  font-size: 0.875rem;
  margin-top: 0.1rem;
}

.section-detail-features {
  padding: 4rem 0;
  background-color: var(--c-secondary);
  background-image: url("../images/home-services-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.feature-card {
  background-color: var(--c-white);
  border-radius: var(--rd-md);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(47, 93, 80, 0.12);
}

.feature-card--icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c-secondary);
  border-radius: var(--rd-md);
  font-size: 1.125rem;
}

.gallery-main {
  height: 480px;
  border-radius: var(--rd-md);
  overflow: hidden;
}

.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 480px;
}

.gallery-thumb {
  flex: 1;
  height: auto;
  border-radius: var(--rd-md);
  overflow: hidden;
}

.gallery-main img,
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-main:hover img,
.gallery-thumb:hover img {
  transform: scale(1.04);
}

.gallery-main--link,
.gallery-thumb--link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: zoom-in;
}

.gallery-main--link::after,
.gallery-thumb--link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(47, 93, 80, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.gallery-main:hover .gallery-main--link::after,
.gallery-thumb:hover .gallery-thumb--link::after {
  opacity: 1;
}

.section-detail-pricing {
  background-color: var(--c-secondary);
}

.pricing-card {
  background-color: var(--c-white);
  border-radius: var(--rd-md);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  border: 1.5px solid rgba(47, 93, 80, 0.12);
  position: relative;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.pricing-card.featured {
  border-color: var(--c-primary);
  box-shadow: 0 8px 32px rgba(47, 93, 80, 0.1);
}

.pricing-card--badge {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--c-primary);
  color: var(--c-white);
  padding: 0.25rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card--feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.pricing-card--feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.pricing-card--feature-item i {
  margin-top: 0.2rem;
  flex-shrink: 0;
  font-size: 0.8rem;
}

/*====================================== SECTION MENU PAGE ======================================*/

.menu-hero {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 75vh;
  min-height: 28rem;
  display: flex;
  align-items: flex-end;
  padding: 5.5rem 0 4rem;
}

.menu-hero--content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 50rem;
}

.menu-hero--eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-hero--eyebrow span {
  display: block;
  width: 2rem;
  height: 2px;
  background-color: var(--c-primary);
  opacity: 0.7;
}

.menu-hero--eyebrow p {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-menu-preview {
  padding: 6rem 0;
}

.menu-preview--wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.menu-preview--head {
  text-align: center;
}

.menu-book {
  position: relative;
  width: 100%;
  max-width: 22rem;
  background-color: var(--c-secondary);
  border-radius: var(--rd-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 48px rgba(47, 93, 80, 0.18);
}

.menu-book::before {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M60 10 C60 10 40 20 30 40 C20 60 30 80 60 80 C90 80 100 60 90 40 C80 20 60 10 60 10Z' fill='none' stroke='%232f5d50' stroke-width='1' opacity='0.12'/%3E%3Cpath d='M20 80 C20 80 35 65 55 70 C75 75 80 95 60 105 C40 115 20 100 20 80Z' fill='none' stroke='%232f5d50' stroke-width='1' opacity='0.12'/%3E%3Cpath d='M80 70 C80 70 95 55 110 65 C125 75 120 100 100 105 C80 110 70 90 80 70Z' fill='none' stroke='%232f5d50' stroke-width='1' opacity='0.12'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  background-repeat: repeat;
  opacity: 1;
}

.menu-book--inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  min-height: 26rem;
}

.menu-book--brand {
  text-align: center;
  margin-bottom: auto;
}

.menu-book--vertical-text {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
  white-space: nowrap;
  opacity: 0.55;
  letter-spacing: 0.06em;
}

.menu-book--cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}

.menu-book--title-deco {
  text-align: center;
  margin-top: auto;
}

.menu-book--title-deco h2 {
  font-family: var(--f-heading);
  font-size: clamp(3.5rem, 12vw, 5.5rem);
  line-height: 1;
  opacity: 0.85;
}

.menu-book--footer {
  position: relative;
  z-index: 2;
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid rgba(47, 93, 80, 0.15);
}

.menu-book--footer h5 {
  margin-bottom: 0.25rem;
}

.menu-book--footer p {
  opacity: 0.65;
  line-height: 1.5;
}

.menu-book--cover {
  margin: 0;
  display: block;
  line-height: 0;
}

.menu-book--cover img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.menu-book--overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ====================================== MODAL MENU PDF ====================================== */
.modal-menu-pdf .modal-dialog {
  max-width: 52rem;
}

.modal-menu-pdf .modal-content {
  overflow: hidden;
}

.modal-menu-pdf .modal-header {
  background-color: var(--c-primary);
  border-bottom: none;
  padding: 1.25rem 1.5rem;
}

.modal-menu-pdf .modal-header .btn-close {
  background-image: none;
  background-color: var(--c-red);
  color: var(--c-white);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  position: relative;
  box-shadow: none;
  transition: background-color 0.2s ease;
}

.modal-menu-pdf .modal-header .btn-close:hover {
  background-color: var(--c-red);
  opacity: 0.85;
}

.modal-menu-pdf .modal-header .btn-close::before,
.modal-menu-pdf .modal-header .btn-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background-color: var(--c-white);
  border-radius: 2px;
}

.modal-menu-pdf .modal-header .btn-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-menu-pdf .modal-header .btn-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-menu-pdf .modal-body {
  padding: 1.25rem;
  background-color: #f5f1e8;
}

.pdf-frame-wrapper {
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

#pdfIframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.pdf-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
}

/*====================================== MODAL PDF MENU ======================================*/

.modal-menu-pdf .modal-dialog {
  max-width: 860px;
  width: 95vw;
  margin: 1rem auto;
}

.modal-menu-pdf .modal-content {
  background-color: #1a1a1a;
  border: none;
  border-radius: var(--rd-lg);
  overflow: hidden;
}

.modal-menu-pdf .modal-header {
  background-color: var(--c-primary);
  border: none;
  padding: 1rem 1.5rem;
}

.modal-menu-pdf .modal-title {
  color: var(--c-white);
  font-family: var(--f-heading);
  font-size: 2rem;
}

.modal-menu-pdf .modal-body {
  padding: 0;
}

.pdf-frame-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.pdf-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 3rem 2rem;
  text-align: center;
  height: 100%;
  min-height: 320px;
}

/*====================================== SECTION KONTAK PAGE ======================================*/

.kontak-hero {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 75vh;
  min-height: 28rem;
  display: flex;
  align-items: flex-end;
  padding: 5.5rem 0 4rem;
}

.kontak-hero--content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 50rem;
}

.section-kontak-lokasi {
  padding: 5rem 0;
}

.kontak-lokasi--card {
  background-color: var(--c-primary);
  border-radius: var(--rd-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.kontak-lokasi--card-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.kontak-lokasi--card-item-head {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.kontak-lokasi--map {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  border-radius: var(--rd-md);
  overflow: hidden;
}

.kontak-lokasi--map iframe {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  border: none;
  display: block;
  border-radius: var(--rd-md);
}

.kontak-lokasi--body {
  display: flex;
  align-items: center;
}

.kontak-lokasi--left {
  height: 100%;
  flex: 0 0 35%;
  margin: 1rem -1rem 1rem 0;
  z-index: 9;
}

.kontak-lokasi--right {
  flex: 1;
}

.kontak-lokasi--address-link {
  display: block;
  opacity: 0.85;
  transition:
    opacity 0.3s ease,
    color 0.3s ease;
}

.kontak-lokasi--address-link:hover {
  opacity: 1;
  color: var(--c-secondary) !important;
}

.kontak-lokasi--wa-link {
  position: relative;
  display: inline-flex;
  opacity: 0.85;
  transition:
    opacity 0.3s ease,
    color 0.3s ease;
}

.kontak-lokasi--wa-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--c-secondary);
  transition: width 0.45s ease-in-out;
}

.kontak-lokasi--wa-link:hover {
  opacity: 1;
  color: var(--c-secondary) !important;
}

.kontak-lokasi--wa-link:hover::before {
  width: 100%;
}

.section-home-usp {
  padding: 5rem 0;
}

/*====================================== SECTION 503  ======================================*/
.maintenance-container {
  min-height: 100vh;
  width: 100%;
  background-image: url("../images/maintenance-bg.jpg");
  background-size: cover;
  box-shadow: none;
  background-repeat: no-repeat;
}

.mt-layout--title {
  margin-bottom: -9rem;
}

.mt-layout--title h1 {
  color: #647ea7;
  font-size: 22.5rem;
  line-height: 0.8;
}

.mt-layout--desc {
  margin-top: -5rem;
}

/*====================================== SECTION EMPTY WRAPPER ======================================*/

.empty-state-wrapper .empty-state-image {
  max-width: 20rem;
}

/*====================================== SECTION FOOTER ======================================*/

footer {
  position: relative;
  z-index: 1;
  padding: 4rem 0 2rem 0;
  background-color: var(--c-primary);
  border-top: 2px solid var(--c-secondary);
}

footer::before {
  display: none;
}

.footer-brand--address a:hover {
  color: var(--c-tertiary) !important;
}

.footer-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-link--list a {
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-link--list a:hover {
  opacity: 1;
}

.footer-menu .footer-menu--link a {
  position: relative;
  font-size: 14px;
  display: inline-flex;
  color: var(--c-white);
  font-weight: var(--f-w-regular);
}

.footer-contact--wrapper .footer-link--list a::before,
.footer-menu .footer-menu--link a::before,
.footer-menu .footer-menu--link.active a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--c-white);
  transition: all 0.5s ease-in-out;
}

.footer-menu .footer-menu--link:hover a {
  color: var(--c-white);
}

.footer-contact--wrapper .footer-link--list:hover a::before,
.footer-menu .footer-menu--link:hover a::before,
.footer-menu .footer-menu--link.active a::before,
.footer-menu .footer-menu--link:hover.active a::before {
  width: 100%;
}

.footer-menu .footer-menu--link.active a {
  color: var(--c-white);
  font-weight: var(--f-w-bold);
}

.footer-social--link:hover {
  transform: scale(1.1);
}

.wa-floating {
  z-index: 999;
  position: fixed;
  bottom: 2%;
  right: 20px;
  transition: all 0.3s;
}

.wa-floating:hover {
  transform: translateY(-10px);
  /*box-shadow: 0 8px 18px 0 rgba(0,0,0,.18);*/
}

.wa-floating a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
}

.wa-floating p {
  margin-top: 10px;
  font-size: 12px;
  line-height: 16px;
  color: #0303c6;
}

.wa-floating .image {
  max-width: 60px;
}

@keyframes maka {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

footer.footer .footer-copyright span {
  display: inline-block;
  margin-right: 1px;
}

.footer-sosmed-list span {
  color: black;
}

.footer-sosmed-list span i {
  font-size: 1rem;
  width: 16px;
}

.footer-list a:hover,
.footer-sosmed-list a:hover span {
  color: var(--c-primary);
}

.footer-question-card {
  padding: 1.25rem 2rem;
  border-radius: 12px;
  box-shadow: 0px 5px 20px 0px
    rgba(118.93125915527345, 118.93125915527345, 118.93125915527345, 0.2);
}

footer .footer-list a span {
  display: block;
  line-height: 1.5;
  font-weight: 400;
  font-size: 0.75rem;
}

.maka-color {
  color: #ceebf8 !important;
}

footer.footer .footer-copyright span a {
  color: #ceebf8 !important;
}

footer.footer .footer-copyright:hover span:nth-child(1) {
  animation: maka 0.9s ease-in-out;
}

footer.footer .footer-copyright:hover span:nth-child(2) {
  animation: maka 1.1s ease-in-out;
}

footer.footer .footer-copyright:hover span:nth-child(3) {
  animation: maka 1.3s ease-in-out;
}

footer.footer .footer-copyright:hover span:nth-child(4) {
  animation: maka 1.5s ease-in-out;
}

/* ======================================
   FOOTER — REDESIGN
====================================== */

.footer-brand--img {
  height: 52px;
  width: auto;
}

.footer-brand--tagline {
  max-width: 320px;
}

.footer-brand--address-link {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-brand--address-link:hover {
  opacity: 0.8;
}

.footer-brand--address-icon {
  color: var(--c-secondary);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-section-label {
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-section-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: var(--c-secondary);
  border-radius: 2px;
}

.footer-social--icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--c-white);
  font-size: 0.85rem;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-social--icon:hover {
  background-color: var(--c-secondary);
  border-color: var(--c-secondary);
  color: var(--c-primary);
  transform: translateY(-3px);
}

.footer-link--item {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-link--item:hover {
  opacity: 0.8;
}

.footer-link--icon {
  color: var(--c-secondary);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom--divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.footer-copyright small {
  opacity: 0.72;
  font-size: 0.8rem;
}

.m-none {
  margin: 0 !important;
}

.mb0 {
  margin-bottom: 0px;
}

.mb4 {
  margin-bottom: 4px;
}

.mb8 {
  margin-bottom: 8px;
}

.mb16 {
  margin-bottom: 16px;
}

.mb24 {
  margin-bottom: 24px;
}

.mb32 {
  margin-bottom: 32px;
}

.mb48 {
  margin-bottom: 48px;
}

.mb64 {
  margin-bottom: 64px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb100 {
  margin-bottom: 100px;
}

.mt0 {
  margin-top: 0px;
}

.mt8 {
  margin-top: 8px;
}

.mt16 {
  margin-top: 16px;
}

.mt24 {
  margin-top: 24px;
}

.mt32 {
  margin-top: 32px;
}

.mt48 {
  margin-top: 48px;
}

.mt64 {
  margin-top: 64px;
}

.mt80 {
  margin-top: 80px;
}

.mt100 {
  margin-top: 100px;
}

.mt100 {
  margin-top: 100px;
}

.row-gap-1 {
  row-gap: 1rem;
}

.row-gap-2 {
  row-gap: 2rem;
}

/*====================================== SECTION SKELETON ======================================*/

.skeleton-card,
.skeleton-card:hover,
.skeleton-card::before {
  border: 0px solid #f5f3f3 !important;
  background: var(--c-transparent) !important;
  background-color: var(--c-transparent) !important;
  box-shadow: none;
  transform: scale(1) !important;
  /* animation: shimmer 0.3s infinite linear; */
}

.skeleton-card::before {
  content: unset;
}

.skeleton-picture,
.skeleton-text {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: var(--c-skeleton);
  border-radius: 1rem;
}

.article-list.skeleton-card,
.article-list.skeleton-card:hover,
.home-stock.skeleton-card,
.home-stock.skeleton-card:hover,
.skeleton-pagination.skeleton-card,
.bocd-card.skeleton-card,
.ob-card.skeleton-card,
.career-testi-list.skeleton-card,
.career-list.skeleton-card,
.obd-gallery-card.skeleton-card {
  background-color: var(--c-white) !important;
}

.card-person.skeleton-card {
  background: linear-gradient(
    180deg,
    rgb(242 247 255) 12.89%,
    rgba(115, 170, 236, 1) 100%
  ) !important;
}

.hero-container.skeleton-card::before {
  content: "" !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #194495 !important;
  background: linear-gradient(
    180deg,
    rgba(25, 68, 149, 1) 0%,
    rgba(54, 97, 166, 0.9) 20%,
    rgb(255 255 255 / 15%) 90%,
    rgba(255, 255, 255, 0) 100%
  ) !important;
}

.skeleton-card figure::before,
.skeleton-card.bocd-card::after,
.skeleton-card .pillar-card .pillar-card--info::before {
  content: unset;
}

.skeleton-card.awards-list {
  border: 1px solid #d2d4dc !important;
}

.skeleton-picture.xs {
  width: 100%;
}

.skeleton-picture.sm {
  height: 2.25rem;
}

.skeleton-picture.md {
  height: 3rem;
}

.skeleton-picture.lg {
  height: 4rem;
}

.skeleton-picture.xl {
  height: 5.25rem;
}

.skeleton-picture.xxl {
  height: 8rem;
}

.skeleton-picture.xl-3 {
  height: 10rem;
}

.skeleton-picture.xl-4 {
  height: 15rem;
}

.skeleton-picture.xl-5 {
  height: 20rem;
}

.skeleton-picture.xl-6 {
  height: 22.5rem;
}

.skeleton-picture.xl-7 {
  height: 25rem;
}

.skeleton-picture.xl-8 {
  height: 30rem;
}

.skeleton-text.xs {
  height: 0.5rem;
}

.skeleton-text.sm {
  height: 0.75rem;
}

.skeleton-text.md {
  height: 1rem;
}

.skeleton-text.lg {
  height: 1.5rem;
}

.skeleton-text.xl {
  height: 2rem;
}

.skeleton-text.xxl {
  height: 2.5rem;
}

.skeleton-text.xl-3 {
  height: 3rem;
}

.skeleton-text.xl-4 {
  height: 4rem;
}

.skeleton-text.xl-5 {
  height: 5rem;
}

.skeleton-text::before,
.skeleton-picture::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -150px;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    to right,
    rgba(22, 64, 148, 0.05) 0%,
    rgba(22, 64, 148, 0.2) 30%,
    rgba(22, 64, 148, 0.2) 70%,
    rgba(22, 64, 148, 0.05) 100%
  );
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: -100%;
  }
}
