@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

@font-face {
  font-family: "Nexa-Heavy";
  src: url("/fonts/nexa/Nexa-Heavy.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Nexa-ExtraLight";
  src: url("/fonts/nexa/Nexa-ExtraLight.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Akira-Expanded";
  src: url("/fonts/akira-expanded/Akira-Expanded-Demo.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

:root {
  /* --primary-gd: transparent linear-gradient(140deg, #384967 0%, #6f91cd 100%) 0% 0% no-repeat padding-box; */
  --c-primary: #a831fa;
  --c-secondary: #75e7f8;
  --c-body: #000000;
  --c-black: #212529;
  --c-info: #9597a1;
  --c-red: #d0342c;
  --c-white: #ffffff;
  --c-grey: #d1d1d1;
  --c-disabled: #dee1e8;
  --c-transparent: transparent;
  --c-skeleton: #75e7f834;
  --shadow-bg: 0px 6px 18px rgb(0 0 0 / 8%);
  --shadow-skeleton: 0px 6px 18px rgb(0 0 0 / 3%);
  --ts-cubic: all 0.5s cubic-bezier(0.47, 0.71, 0.66, 0.84);

  --btn-background: #09041e;
  --btn-shadow: rgba(33, 4, 104, 0.2);
  --btn-shine-left: rgba(168, 49, 250, 0.5);
  --btn-shine-right: rgba(117, 231, 248, 0.65);
  --glow-start: #a831fa;
  --glow-end: #75e7f8;
}

*,
::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: "Nexa-Heavy", sans-serif; */
  /* font-family: "Nexa-ExtraLight", sans-serif; */
  font-family: "Inter", sans-serif;
  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.5;
  letter-spacing: normal;
  font-weight: 500;
  font-style: normal;
  background-color: var(--c-body);
  color: var(--c-white);
  width: 100%;
  height: 100%;
  /* overflow-x: hidden; */
  overflow-y: overlay;
  transition: ease 0.3s;
}

.h-font {
  font-family: "Poppins", sans-serif;
}

.b-font {
  font-family: "Poppins", sans-serif;
}

.c-font.akira-expended {
  font-family: "Akira-Expanded", sans-serif;
}

.c-font.nexa-heavy {
  font-family: "Nexa-Heavy", sans-serif;
}

.c-font.nexa-extra-light {
  font-family: "Nexa-ExtraLight", sans-serif;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Akira-Expanded", sans-serif;
}

h1 {
  font-size: 4.5rem;
  font-weight: 600;
}

h2 {
  font-size: 3.375rem;
  font-weight: 600;
}

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

h4 {
  font-size: 2rem;
  font-weight: 500;
}

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

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

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

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

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

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

a {
  color: var(--c-black);
  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) !important; */
  color: var(--c-secondary) !important;
}

span,
i {
  transition: all 0.3s !important;
}

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: #fff;
}

.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 input.form-control {
  padding-right: 3rem;
}

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

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

input.form-control,
textarea.form-control {
  padding: 1rem 0.75rem;
  color: #ffff;
  background-color: transparent;
  /* background: #31313180 0% 0% no-repeat padding-box; */
  box-shadow: 0px 0px 8px #ffffff99;
  border: 1px solid #ffffff;
  border-radius: 8px;
  opacity: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

input.form-control::placeholder,
textarea.form-control::placeholder {
  color: rgb(205, 205, 205);
}

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: 1rem 0.75rem;
  font-size: 1rem;
  /* letter-spacing: 1rem; */
  font-weight: 400;
  /*background-color: 08284b;*/
  color: #ffff;
  background-color: transparent;
  /* background: #31313180 0% 0% no-repeat padding-box; */
  box-shadow: 0px 0px 8px #ffffff99;
  border: 1px solid #ffffff;
  border-radius: 8px;
  opacity: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-position: 95% 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 option {
  color: var(--c-black);
}

select.form-control:hover,
select.form-control:focus,
select.form-control:active {
  border-color: #bfc7d7;
  color: #ffff;
}

.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: #ffff;
  background-color: transparent;
  border: 1px solid #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

label.control-label {
  position: relative;
  font-size: 0.875rem;
  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 {
  /* position: fixed; */
  overflow: hidden !important;
  padding-right: 0 !important;
}

.modal-content {
  max-height: 90vh;
  /* height: 100%; */
  background-color: #fff;
  border: 0;
  border-radius: 1.25rem;
}

.modal-header {
  padding: 1.5rem 2rem;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  border-color: var(--c-transparent);
}

.modal-header .modal-logo {
  max-width: 7.25rem;
  margin: 0 auto 1rem auto;
}

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

.modal-header .modal-close .btn-close {
  opacity: 1;
  background-image: none;
  width: 32px;
  height: 32px;
  margin-left: 0;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background-color: #f54036;
  color: var(--c-white);
  font-size: 16px;
  position: relative;
  transition: all 0.3s;
}

.modal-close .btn-close:hover,
.modal-header .btn-close:hover {
  opacity: 1;
  background-color: #f54036;
}

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

.modal.fade {
  overflow: hidden;
}

.modal.fade .modal-dialog {
  transition: transform 0.5s ease-in-out, filter 1s ease-out;
  filter: blur(5px);
  transform: translate(30px, 999px) rotate(0) scale(0);
}

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

.modal.fade.show .modal-dialog .modal-content {
  overflow-y: auto;
}

.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-radar {
  position: relative;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  font-family: inherit;
  font-size: 16px !important;
  font-weight: 600;
  border-radius: 24px;
  position: relative;
  line-height: 24px;
  cursor: pointer !important;
  color: var(--c-white);
  padding: 0;
  margin: 0;
  background: none;
  z-index: 1;
  overflow: hidden;
  padding: 0.6px;
  box-shadow: 0 8px 20px var(--btn-shadow);
}

.btn-radar .gradient {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(var(--c-white), var(--c-black));
  transform: scaleY(1.03) scaleX(1.2) rotate(-0.35deg);
}

.btn-radar .gradient:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: scale(1.05) translateY(-44px) rotate(0deg) translateZ(0);
  padding-bottom: 100%;
  border-radius: 50%;
  background: linear-gradient(90deg,
      var(--btn-shine-left),
      var(--btn-shine-right));
  -webkit-animation: rotate linear 2s infinite;
  animation: rotate linear 2s infinite;
}

.btn-radar span {
  z-index: 1;
  position: relative;
  display: block;
  padding: 0.75rem 1.5rem;
  box-sizing: border-box;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 7.75rem;
  border-radius: inherit;
  cursor: pointer !important;
  background-color: var(--btn-background);
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.btn-radar span:before {
  content: "";
  position: absolute;
  left: -16px;
  top: -16px;
  transform: translate(var(--pointer-x, 0px), var(--pointer-y, 0px)) translateZ(0);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--btn-glow, transparent);
  opacity: var(--btn-glow-opacity, 0);
  transition: opacity var(--btn-glow-duration, 0.5s);
  filter: blur(16px);
}

.btn-radar:hover {
  outline: 0;
  color: var(--c-secondary) !important;
  --btn-glow-opacity: 1;
  --btn-glow-duration: 0.25s;
}

.btn-radar.btn-transparent {
  background-color: unset;
  text-decoration: underline;
  box-shadow: none;
  transition: all 0.3s;
}

.btn-radar.btn-transparent:hover {
  text-decoration: none;
}

.btn-radar.btn-transparent span {
  z-index: 1;
  position: relative;
  display: block;
  padding: unset;
  box-sizing: border-box;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 7.75rem;
  border-radius: inherit;
  background-color: unset;
  overflow: hidden;
  -webkit-mask-image: unset;
}

.btn-sosmed {
  display: flex;
  gap: 1rem;
  transition: all 0.3s;
  align-items: center;
  text-align: center;
  box-shadow: none;
  width: fit-content;
  padding: 0.75rem 1.5rem 0.75rem 1.5rem;
  border-radius: 14px;
  background: linear-gradient(92.74deg,
      rgba(221, 51, 250, 0.6) -14.21%,
      rgba(30, 173, 195, 0.6) 109.74%);
  box-shadow: 0px 0px 8px 0px rgba(255, 255, 255, 1);
}

.btn-sosmed:hover {
  box-shadow: 0px 0px 8px 0px rgba(221, 51, 250, 0.6);
  color: white !important;
}

.btn-sosmed span {
  z-index: 1;
  position: relative;
  display: block;
  padding: unset;
  color: #fff;
  box-sizing: border-box;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 7.75rem;
  font-size: 1.2rem;
  border-radius: inherit;
  background-color: unset;
  overflow: hidden;
}

@-webkit-keyframes rotate {
  to {
    transform: scale(1.05) translateY(-44px) rotate(360deg) translateZ(0);
  }
}

@keyframes rotate {
  to {
    transform: scale(1.05) translateY(-44px) rotate(360deg) translateZ(0);
  }
}

.btn-nohov:focus,
.btn-nohov:hover,
.btn-nohov:active,
.btn-nohov:target,
.btn-nohov:focus:hover,
.btn-disable:focus,
.btn-disable:hover,
.btn-disable:active,
.btn-disable:target,
.btn-disable:focus:hover {
  background-color: var(--c-primary);
}

.btn-primary {
  position: relative;
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: 1px solid var(--c-primary);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  border-radius: 24px;
  position: relative;
  line-height: 24px;
  cursor: pointer;
  color: var(--c-white);
  background-color: var(--btn-background);
  padding: 0;
  margin: 0;
  z-index: 1;
  overflow: hidden;
  padding: 0.75rem 1.5rem;
  min-width: 7.75rem;
  transition: all 0.6s;
  box-shadow: 0 0px 16px 2px var(--btn-shine-right);
}

.btn-primary span {
  display: block;
  text-align: center;
  position: relative;
  z-index: 7;
}

.btn-primary:hover {
  color: var(--c-white) !important;
  border-color: var(--c-transparent);
  background-color: var(--btn-background);
  box-shadow: 0 0px 16px 2px var(--btn-shine-left);
}

.btn-primary::before {
  opacity: 0;
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  right: -32px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  filter: blur(2px);
  background-color: var(--c-secondary);
  transition: all 1s;
}

.btn-primary::after {
  opacity: 0;
  z-index: 2;
  content: "";
  position: absolute;
  bottom: 0;
  left: -32px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  filter: blur(2px);
  background-color: var(--c-primary);
  transition: all 1s;
  transition-delay: 0.3s;
}

.btn-primary:hover::before {
  opacity: 1;
  width: 50%;
  height: 64px;
  filter: blur(25px);
  transform: translate(-32px, -10px);
}

.btn-primary:hover::after {
  opacity: 1;
  width: 50%;
  height: 64px;
  filter: blur(25px);
  transform: translate(32px, 0);
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:focus:hover {
  outline: 0;
  background-color: var(--btn-background);
  border-color: var(--c-transparent);
  color: var(--c-white);
  box-shadow: 0 0px 16px 2px var(--btn-shine-right);
}

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

.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-radar.btn-disable {
  opacity: 0.2 !important;
  cursor: default !important;
}

.btn-radar.disabled {
  background-color: var(--c-disabled);
  cursor: default !important;
}

.btn-radar.disabled:hover,
.btn-radar.disabled:active,
.btn-radar.disabled:focus {
  box-shadow: none;
  transform: scale(1);
}

.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-l {
  font-size: 1.375rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.f-head {
  font-family: "Akira-Expanded", sans-serif !important;
}

.f-body {
  font-family: "Inter", sans-serif !important;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

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

.bold {
  font-weight: 700 !important;
}

.x-bold {
  font-weight: 800 !important;
  /* letter-spacing: 1; */
}

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

.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-sm {
  border-radius: 0.25rem;
}

.rd-md {
  border-radius: 0.5rem;
}

.rd-lg {
  border-radius: 0.75rem;
}

.rd-h {
  border-radius: 1.5rem;
}

.rd-50 {
  border-radius: 50%;
}

.rd-t-sm {
  border-radius: 0.25rem 0.25rem 0rem 0rem;
}

.rd-t-md {
  border-radius: 0.5rem 0.5rem 0rem 0rem;
}

.rd-t-lg {
  border-radius: 0.75rem 0.75rem 0rem 0rem;
}

.rd-t-h {
  border-radius: 1.5rem 1.5rem 0rem 0rem;
}

.rd-b-sm {
  border-radius: 0rem 0rem 0.25rem 0.25rem;
}

.rd-b-md {
  border-radius: 0rem 0rem 0.5rem 0.5rem;
}

.rd-b-lg {
  border-radius: 0rem 0rem 0.75rem 0.75rem;
}

.rd-b-h {
  border-radius: 0rem 0rem 1.25rem 1.25rem;
}

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

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

.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-tertiary {
  background-color: var(--c-tertiary) !important;
}

.bg-white {
  background-color: var(--c-white) !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;
}

.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-128 {
  max-width: 8rem !important;
}

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

.max-240 {
  max-width: 15rem !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-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;
}

.subject-title {
  max-width: 64rem;
  margin: 0 auto;
}

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

.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;
}

.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;
}

.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;
}

/*====================================== SECTION NAVBAR ======================================*/
header {
  position: fixed;
  bottom: 1rem;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 999;
  will-change: transform;
  transition: background 0.3s,
    -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
  transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1),
    background 0.3s;
  transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1),
    background 0.3s, -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
  transform: translateY(0);
  -webkit-transform: translateY(0);
}

header nav {
  max-width: fit-content;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0 1rem;
  /* background-color: var(--c-body); */
  transition: var(--ts-cubic);
}

.container-nav {
  overflow: hidden;
  padding: 0.5rem 1.5rem;
  max-width: auto;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  /* background-color: var(--c-transparent); */
  background: linear-gradient(92.74deg,
      rgba(30, 173, 195, 0.6) -14.21%,
      rgba(221, 51, 250, 0.6) 109.74%);
  box-shadow: 0px 0px 8px 0px rgba(255, 255, 255, 1);
  border: 1px solid var(--c-transparent);
  border-radius: 40px;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  /* box-shadow: 0; */
  transition: all 0.5s;
}

.nav-menu li.active::before {
  content: "";
  position: absolute;
  left: 30%;
  top: 0.25rem;
  width: 3rem;
  height: 3rem;
  background: #75e7f8 0% 0% no-repeat padding-box;
  opacity: 1;
  filter: blur(30px);
  transition: all 0.3s;
}

.container-nav .nav-logo {
  position: relative;
  /* background-color: var(--c-body); */
  opacity: 1;
  z-index: 2;
  flex-shrink: 0;
  -ms-flex-order: 1;
  padding: 0.5rem;
  box-shadow: 0px 0px 10px 0px hsl(0deg 0% 0% / 50%);
  background-color: #aa31fa6e;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

.container-nav .nav-logo .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}

.container-nav .nav-logo:hover .image {
  transform: scale(1.25);
  opacity: 0;
}

.navbar-hero-center {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
}

.nav-menu {
  width: 100%;
  transition: var(--ts-cubic);
}

.nav-menu ul li {
  position: relative;
  flex-shrink: 0;
  /* transition: all 0.3s; */
}

.nav-menu li a {
  z-index: 2;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  opacity: 1;
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-white);
  border: 1px solid var(--c-transparent);
  padding: 0.5rem 1.25rem;
  border-radius: 1.5rem;
  text-decoration: none;
}

.nav-menu li a span {
  position: relative;
  transition: all 0.6s !important;
}

.nav-menu li a:hover span {
  color: var(--c-secondary);
}

.nav-menu li.active a span::before {
  width: 100%;
}

.nav-menu li a:active,
.nav-menu li a:focus {
  color: var(--c-black);
}

.nav-menu li.active a {
  border-radius: 0;
}

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

.nav-menu li:hover .nav-icon,
.nav-menu li:hover .notif-menu-count {
  transform: scale(1.2);
}

.nav-menu li.active a span,
.nav-menu li.active a:hover span {
  font-weight: 700;
  color: var(--c-secondary);
}

.menu-nav {
  max-width: 100%;
  width: 100%;
  list-style: none;
  margin: 0 auto;
  z-index: 9;
  position: relative;
  display: flex;
  padding: 0;
  opacity: 1;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--c-transparent);
  text-align: center;
  transition: ease-in-out 1s;
}

.hide-menu {
  width: 79px;
  padding: 0;
  justify-content: center;
  transition: all 0.6s ease-in-out;
}

.hide-menu .nav-logo {
  width: auto;
}

.hide-menu .menu-nav {
  transform: translateY(48px);
  opacity: 0;
  /* width: 100; */
  margin: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

.hide-menu .menu-nav .menu-nav-center li,
.hide-menu .menu-nav .menu-nav-center li a {
  padding: 0;
}

.menu-nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 1rem;
}

.close-mobile {
  display: none;
}

.menu-container-mobile {
  z-index: -1;
  overflow: hidden;
  background-color: transparent;
  display: none;
  position: fixed;
  opacity: 0;
  left: 0%;
  bottom: -480px;
  transform: scale(0) translate(0%, 150%);
  border-radius: 100px;
  width: 100%;
  height: 0;
  flex-direction: column;
  filter: blur(5px);
  /* transition: all 0.6s; */
}

.menu-container-mobile .menu-container-l-r {
  max-width: 1024px;
  max-height: 480px;
  margin: auto;
}

.menu-container-mobile .menu-nav {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}

.close-mobile {
  opacity: 0;
  z-index: 99;
  position: absolute;
  top: 1rem;
  right: 0.5rem;
}

.menu-container-mobile .menu-nav {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 0;
}

.menu-container-mobile .menu-nav li {
  position: relative;
  text-align: left;
  width: 100%;
  /* filter: blur(4px); */
  opacity: 0;
  padding-bottom: 0;
  margin-bottom: 1rem;
  transform: translateX(-64px);
}

.menu-container-mobile .menu-nav li a {
  position: relative;
  font-size: 32px;
  color: var(--c-white);
}

.menu-container-mobile .menu-nav li.active a {
  color: var(--c-primary);
}

/* .menu-container-mobile .menu-nav li.active::before {
  content: "";
  position: absolute;
  left: -4rem;
  top: 0;
  width: 5rem;
  height: 5rem;
  background: #be8c22 0% 0% no-repeat padding-box;
  opacity: 1;
  filter: blur(40px);
  transition: all 0.3s;
} */

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

.menu-container-mobile .nav-header {
  z-index: 88;
  opacity: 0;
  position: absolute;
  top: 2rem;
  left: 4rem;
  transform: translateX(-80px);
  width: 100%;
  /* filter: blur(4px); */
}

.menu-container-mobile .menu-more-col {
  opacity: 0;
  position: absolute;
  transform: translateX(480px);
  background-size: 200%;
  background-repeat: no-repeat;
  background-position: center center;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.3);
  transition: background-size 20s;
}

.menu-container-mobile .menu-more-col:nth-child(1) {
  top: 0;
  left: 8px;
}

.menu-container-mobile .menu-more-col:nth-child(2) {
  bottom: -1rem;
  left: -1rem;
}

.menu-container-mobile .menu-more-col:nth-child(3) {
  top: 140px;
  right: 16px;
}

.menu-container-mobile .menu-more-col:hover {
  background-size: 350%;
}

.menu-container-mobile .menu-more-col a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.menu-container-mobile .menu-more-col a.active {
  color: var(--c-secondary) !important;
  font-weight: 700;
}

.menu-container-mobile .nav-close {
  z-index: 99;
  opacity: 0;
  position: absolute;
  top: 2rem;
  right: 4rem;
  transform: translateY(-16px);
}

.menu-container-mobile .nav-close button.btn-sc {
  background-color: var(--c-primary);
  color: var(--c-white);
  padding: 0;
  width: 36px;
  height: 36px;
  font-size: 1.25rem;
  border-radius: 50%;
  outline: 0;
  border: 0;
  transition: all 0.3s;
}

.menu-container-mobile .nav-close button.btn-sc:hover {
  background-color: var(--c-red);
}

.menu-container-mobile .nav-menu .nav-close {
  z-index: 999;
  display: flex;
  position: absolute;
  top: 0;
  right: 28px;
  align-items: center;
  justify-content: center;
  z-index: 99;
  cursor: pointer;
  box-shadow: none;
  border: none;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--c-black);
  opacity: 0;
  transition: ease-in-out 0.6s;
}

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

.swiper {
  overflow: clip;
}

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

.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 {
  background-color: var(--c-transparent);
  background-image: url("../images/general/arrow-right.svg") !important;
  opacity: 1;
  transition: all 0.3s;
  right: 1.5rem;
  padding: 1rem;
  /* box-shadow: 0px 0px 10px 0px hsl(0deg 0% 0% / 25%); */
  box-shadow: none;
}

.swiper-button-prev {
  background-color: var(--c-transparent);
  background-image: url("../images/general/arrow-left.svg") !important;
  opacity: 1;
  transition: all 0.3s;
  left: 1.5rem;
  /* box-shadow: 0px 0px 10px 0px hsl(0deg 0% 0% / 25%); */
  box-shadow: none;
}

.swiper-button-next,
.swiper-button-prev {
  top: 45%;
  width: 2rem !important;
  height: 2rem !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: scale(1.1);
}

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

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

.swiper-pagination-bullet {
  width: 1rem;
  height: 0.25rem;
  border-radius: 1.25rem;
}

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

.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 HOME PAGE ======================================*/
section {
  margin: 0 auto;
  padding: 4rem 0;
}

.container-fluid {
  margin: 0 auto;
}

section.section-home-hero {
  opacity: 1;
  background-image: url("../images/home-hero-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.bg-pulse-green {
  position: absolute;
  width: 10rem;
  height: 10rem;
  background: rgba(30, 173, 195, 0.5);
  opacity: 1;
  filter: blur(80px);
  -webkit-filter: blur(80px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.bg-pulse-purple {
  position: absolute;
  width: 10rem;
  height: 10rem;
  background: rgba(221, 51, 250, 0.6);
  opacity: 1;
  filter: blur(80px);
  -webkit-filter: blur(80px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.bg-pulse-green.sm {
  width: 5rem;
  height: 5rem;
}

.bg-pulse-purple.sm {
  width: 5rem;
  height: 5rem;
}

section.section-home-hero .bg-pulse-purple {
  top: 0;
  right: 0;
}

section.section-home-hero .bg-pulse-green {
  bottom: 35%;
  left: 20%;
}

.electron-container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.electorn-wording-left {
  top: 30%;
  left: 20%;
}

.electorn-wording-right {
  bottom: 30%;
  right: 20%;
}

.electorn-wording-left .underline-cta,
.electorn-wording-right .underline-cta {
  margin-top: -0.75rem;
}

.electron-center .center-image {
  position: absolute;
  width: 10rem;
  /* Adjust size */
  height: 10rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Electron styles with different sizes and padding for orbit effect */
.electron {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(221, 51, 250, 0.2);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.electron img {
  width: 100%;
  height: 140px;
  position: absolute;
  top: 0;
  left: 50%;
  opacity: 0;
  /* Start as invisible */
  transition: opacity 0.2s ease-in;
  transform: translate(-50%, -50%);
}

.orbit-image {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  /* Start invisible */
  transform: translate(-50%, -50%) scale(0);
  /* Start outside the orbit */
}

/* Three different electron orbits */
.electron.electron-1 {
  width: 650px;
  height: 650px;
  animation: rotation-1 10s infinite linear;
}

.electron.electron-1.aditional {
  width: 650px;
  height: 650px;
  animation: rotation-1 12s infinite linear;
}

.electron.electron-2 {
  width: 470px;
  height: 470px;
  border: 2px solid #75e7f817;
  animation: rotation-2 15s infinite linear;
}

.electron.electron-3 {
  width: 270px;
  height: 270px;
  animation: rotation-3 10s infinite linear;
}

.electron-1 img {
  animation: keep-upright-1 10s infinite linear;
  z-index: 3;
}

.electron-1.aditional img {
  animation: keep-upright-1 12s infinite linear;
  z-index: 3;
}

.electron-2 img {
  animation: keep-upright-2 15s infinite linear;
  z-index: 2;
}

.electron-3 img {
  animation: keep-upright-3 10s infinite linear;
  z-index: 1;
}

/* Keyframes for electron rotation */
@keyframes rotation-1 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotation-2 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotation-3 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Keyframes to keep images upright */
@keyframes keep-upright-1 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes keep-upright-2 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes keep-upright-3 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

section.section-home-about {
  padding-bottom: 10rem;
  background-image: url("../images/bg-home-about.png");
  background-size: 240px;
  background-repeat: no-repeat;
  background-position: bottom left;
}

section.section-home-about .bg-pulse-green {
  top: 20%;
  left: -1rem;
}

section.section-home-about .bg-pulse-purple {
  right: 0;
  bottom: 30%;
}

.home-about-card {
  position: relative;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  max-width: 17.5rem;
  width: 100%;
  height: 25rem;
  padding: 1rem 1rem 0 1rem;
  overflow: hidden;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.3);
  transition: all 0.5s;
}

.home-about-card:nth-child(2) {
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.6);
}

.home-about-card:hover {
  transform: scale(0.98);
}

.home-about-card .image {
  top: 0;
  left: 0;
}

.home-about-card .home-about-branch {
  bottom: 1.5rem;
}

section.section-home-event {
  margin-top: -6rem;
}

section.section-home-event .subject-title {
  margin-top: -3rem;
}

.event-home-wrapper {
  max-width: 1140px;
  padding: 2rem 3rem;
}

.event-home-list,
.event-home-all {
  position: relative;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-size 20s linear;
}

.event-home-list:hover {
  background-size: 200%;
}

.event-home-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(90deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(90deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}

.event-home-all {
  padding: 1rem;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
}

section.section-home-gallery .bg-pulse-purple {
  top: 5%;
  left: 30%;
}

section.section-home-gallery .bg-pulse-green {
  width: 20rem;
  height: 20rem;
  bottom: 30%;
  left: 45%;
}

.wrapper-marq {
  /* padding: 0.5rem 0; */
  height: auto;
  width: 150%;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-color: var(--c-transparent);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.marq-container::before {
  z-index: 9;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5rem;
  background-image: -webkit-gradient(linear,
      left top,
      right top,
      from(rgba(0, 0, 0, 0)),
      to(var(--c-body)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0), var(--c-body));
}

.marq-container::after {
  z-index: 9;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 5rem;
  background-image: -webkit-gradient(linear,
      left top,
      right top,
      from(rgba(0, 0, 0, 0)),
      to(var(--c-body)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), var(--c-body));
}

.wrapper-marq .box-marq {
  z-index: 2;
  position: relative;
  overflow: hidden;
  width: 150%;
  display: flex;
  border: 0;
  align-items: center;
  margin: 0 1rem 0 0;
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
}

.box-marq .image {
  display: flex;
  width: 100%;
  height: 20rem;
  border-radius: 0.75rem;
}

.wrapper-marq .box-marq:nth-last-child(1) .image {
  margin-right: 1rem;
}

.wrapper-marq.marq-flip {
  margin-left: -50%;
  transform: scale(-1, 1);
  -moz-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
}

.wrapper-marq.marq-flip .box-marq .image {
  transform: scale(-1, 1) !important;
  -moz-transform: scale(1, -1) !important;
  -o-transform: scale(1, -1) !important;
  -ms-transform: scale(1, -1) !important;
}

.box-marq .image img {
  object-fit: cover;
  border-radius: 0.75rem;
}

section.section-home-talent {
  background-image: url("../images/bg-home-talent-right.jpg");
  background-size: 240px;
  background-repeat: no-repeat;
  background-position: top 0 right;
}

section.section-home-talent .home-talent-bg-left {
  position: absolute;
  top: -10rem;
  left: 0;
  width: 30rem;
  height: 30rem;
  z-index: -1;
}

/* .ot-gallery-wrapper .ot-gallery-content {
  padding-bottom: 3rem;
} */

.swiper-our-talent .cta-swiper-ot {
  height: 4rem;
  margin: 1rem 0rem;
  padding: 0 1rem 1rem 1rem;
}

.our-talent-card .gallery-thumb {
  max-height: 17rem;
  overflow: hidden;
}

.our-talent-card .ot-card-content {
  min-height: 18.25rem;
}

.our-talent-card .bg-pulse-green {
  z-index: -1;
  bottom: 0;
  left: 20%;
}

.our-talent-card .bg-pulse-purple {
  z-index: -1;
  bottom: 0;
  left: 40%;
}

.our-talent-card .ot-card-content {
  background: linear-gradient(180deg,
      rgba(30, 173, 195, 0.6) 0%,
      rgba(0, 0, 0, 0) 100%);
  padding: 1rem;
  border-radius: 12px;
}

.ot-gallery-banner {
  width: 100%;
  height: 30rem;
}

.ot-gallery-banner .ot-banner-content {
  align-items: center;
  padding: 0 1rem;
}

.ot-gallery-banner .image {
  width: 100%;
  height: 100%;
  border-radius: 48px;
}

.ot-gallery-banner .image img {
  border-radius: 48px;
}

.ot-gallery-banner .image::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 20rem;
  width: 100%;
  background: linear-gradient(182.94deg,
      rgba(0, 0, 0, 0) 13.16%,
      #000000 72.45%);
}

/* swiper our talent */
.ot-gallery-wrapper .swiper-pagination-bullet-active {
  background-color: transparent;
}

.gallery-indicator {
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  border-bottom: none;
  user-select: none;
  gap: 1rem;
  transition: all 0.3s;
}

.gallery-indicator {
  user-select: none;
  /* pointer-events: none; */
}

.gallery-indicator img.gallery-thumb {
  user-select: none;
  pointer-events: none;
}

.our-talent .swiper-button-next.ot-next {
  right: 3rem;
}

.our-talent .swiper-button-prev.ot-prev {
  left: 0;
}

.our-talent .swiper-button-next.ot-next,
.our-talent .swiper-button-prev.ot-prev {
  cursor: pointer !important;
  border: 2px solid rgba(255, 255, 255, 1);
  box-shadow: 0px 0px 16px 0px rgba(30, 173, 195, 1);
  border-radius: 50%;
  background-size: 1.5rem;
  width: 2.5rem !important;
  height: 2.5rem !important;
}

.home-req-event {
  height: 40rem;
}

section.section-home-req .bg-pulse-green {
  top: 5%;
  left: -1rem;
}

section.section-home-req .bg-pulse-purple {
  bottom: -5rem;
  left: 30%;
}

.cta-footer-card {
  height: 30rem;
  width: 100%;
  padding: 3rem 4rem;
}

.cta-footer-card .image-wrapper {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta-footer-card .image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(232deg, #00000099 0%, #ea70ff99 100%) 0% 0% no-repeat padding-box;
  opacity: 1;
}

.col-home-cta:nth-child(2) .cta-footer-card .image-wrapper::before {
  background: transparent linear-gradient(128deg, #00000099 0%, #1eadc399 100%) 0% 0% no-repeat padding-box;
  opacity: 1;
}

.cta-footer-card .image-wrapper .image {}

/*====================================== SECTION ABOUT  ======================================*/
section.section-about-hero {
  padding-bottom: 2rem;
}

.about-hero {
  /* height: 100vh; */
}

.about-hero-logo {
  position: absolute;
  top: -2rem;
  z-index: 3;
}

.about-hero-astro {
  position: absolute;
  top: 0;
  left: 0%;
  z-index: 2;
}

.about-hero-moon {
  transform: scale(0);
  position: absolute;
  top: -2rem;
  right: -10rem;
  z-index: 2;
}

.about-hero .about-hero-video video,
.about-hero .about-hero-video canvas
 {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
}

.function-area-container {
  height: 40rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top -64px center;
}

section.section-about-floor .bg-pulse-green {
  z-index: -1;
  top: 5%;
  left: 0;
}

.subject-floor {
  width: fit-content;
  background: linear-gradient(180deg,
      rgba(30, 173, 195, 0.6) 0%,
      rgba(0, 0, 0, 0) 100%);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
}

section.section-about-pr .bg-pulse-green {
  top: 15%;
  right: 5%;
}

section.section-about-pr .bg-pulse-purple {
  top: 15%;
  left: 5%;
}

section.section-about-stage .bg-pulse-green {
  top: 55%;
  left: 0%;
}

section.section-about-stage .bg-pulse-purple {
  top: 25%;
  left: 60%;
}

section.section-about-bar .bg-pulse-green {
  bottom: 0;
  right: 40%;
}

section.section-about-bar .bg-pulse-purple {
  top: 15%;
  right: 10%;
}

.swiper-private-room {
  padding-bottom: 1.5rem;
}

.swiper-private-room .swiper-pagination-bullet {
  box-shadow: 0px 0px 40px 0px rgba(238, 133, 255, 1);
  border: 1px solid rgba(255, 255, 255, 1) !important;
  border-radius: 50%;
  width: 14px;
  height: 14px;
}

.swiper-private-room .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgba(217, 217, 217, 1);
}

.private-room-banner .image {
  width: 100%;
  height: 30rem;
}

.private-room-banner,
.swiper-private-room .swiper-pagination {
  width: 100%;
  position: relative;
  margin: 0rem 6rem;
}

.swiper-private-room .swiper-pagination {
  bottom: 12px;
  width: unset !important;
}

.swiper-private-room .cta-swiper-pr,
.swiper-room-galaxy .cta-swiper-lg {
  top: 0;
}

.private-room-content {
  bottom: 5%;
  z-index: 999999999;
}

.swiper-stage-area .stage-area-banner .image,
.swiper-bar-area .bar-area-banner .image {
  height: 428px;
  width: 100%;
}

.cta-swiper-pr .swiper-button-next,
.cta-swiper-pr .swiper-button-prev,
.cta-swiper-lg .swiper-button-next,
.cta-swiper-lg .swiper-button-prev,
.cta-swiper-sa .swiper-button-next,
.cta-swiper-sa .swiper-button-prev,
.cta-swiper-ba .swiper-button-next,
.cta-swiper-ba .swiper-button-prev {
  cursor: pointer !important;
  border: 2px solid rgba(255, 255, 255, 1);
  box-shadow: 0px 0px 16px 0px rgba(30, 173, 195, 1);
  border-radius: 50%;
  background-size: 1.5rem;
  width: 2.5rem !important;
  height: 2.5rem !important;
  background-color: black;
}

.cta-swiper-sa,
.cta-swiper-ba {
  width: 168px;
  top: 40px;
  right: auto;
  left: 85%;
}

.cta-swiper-sa .swiper-button-wrapper,
.cta-swiper-ba .swiper-button-wrapper {
  max-width: 160px;
}

.private-room-wrapper .swiper-wrapper .private-room-banner .image::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 10rem;
  width: 100%;
  z-index: 2;
  background: linear-gradient(182.94deg,
      rgba(0, 0, 0, 0) 13.16%,
      #000000 72.45%);
}

.room-galaxy-wrapper .swiper-room-galaxy::before {
  content: "";
  position: absolute;
  left: -10px;
  bottom: 0;
  height: 100%;
  width: 20rem;
  z-index: 2;
  rotate: 180deg;
  /* background: linear-gradient(90deg, rgba(0, 0, 0, 0) 13.16%, #000000b0 72.45%); */
  background: none;
}

.room-galaxy-wrapper .swiper-room-galaxy::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: 0;
  height: 100%;
  width: 20rem;
  z-index: 2;
  /* background: linear-gradient(90deg, rgba(0, 0, 0, 0) 13.16%, #000000b0 72.45%); */
  background: none;
}

.subject-title .title-stage,
.subject-title .title-bar {
  margin-right: auto;
  padding: 0.5rem 1rem 0.5rem 1.5rem;
}

.subject-title .title-stage::before,
.subject-title .title-bar::before {
  content: "";
  position: absolute;
  left: 0rem;
  top: -2px;
  border-radius: 24px;
  width: 125%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(90deg, rgba(221, 51, 250, 0.6) 0%, #000000 100%);
}

.subject-title .title-stage::before {
  background: linear-gradient(90deg,
      rgba(30, 173, 195, 0.6) 0%,
      #000000 100%) !important;
}

.section-about-lg {
  background-image: url("../images/bg-galaxy.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

section.section-about-lg .container-fluid {
  margin-top: 8rem;
}

.section-about-lg .room-galaxy-wrapper .room-galaxy-banner {
  width: 100%;
  height: 480px;
}

.about-gv-container {
  overflow: hidden;
  height: 100vh;
}

.about-gv-container::before {
  z-index: 9;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(180deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(180deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}

.about-gv-container::after {
  z-index: 9;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(0deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(0deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}

.gallery-vertical-scroll {
  display: flex;
  justify-content: center;
  /* height: 200%; */
  /* Double the height for seamless looping */
}

.col-gv {
  display: flex;
  flex-direction: column;
  padding: 0 10px;
}

.vertical-image {
  margin: 10px 0;
  border-radius: 1rem;
  overflow: hidden;
}

.img-vertical-content {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-gv-container .subject-title {
  z-index: 99;
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, 50%);
}

.masking-section {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.masking-section::before {
  content: "";
  z-index: 5;
  position: absolute;
  width: 100%;
  top: -6px;
  left: 0;
  height: 10rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, var(--c-body) 100%);
  pointer-events: none;
  overflow: hidden;
}

.masking-section::after {
  content: "";
  z-index: 5;
  position: absolute;
  width: 100%;
  bottom: -6px;
  left: 0;
  height: 10rem;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      var(--c-body) 100%);
  pointer-events: none;
  overflow: hidden;
}

.client-masking {
  width: 100%;
  height: 100%;
  opacity: 1;
  background-color: rgb(0 0 0 / 75%);
  backdrop-filter: blur(2.5px);
  text-align: center;
  transform: scale(2.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/*====================================== SECTION EVENT  ======================================*/
.event-own-card {
  width: 100%;
  padding: 2rem;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.6);
  transition: background-size 15s;
}

.event-own-card:hover {
  background-size: 200%;
}

.event-own-card::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
  box-shadow: 0px 0px 20px 0 rgb(255 255 255 / 25%);
  transition: all 0.5s;
}

.event-own-card:hover::before {
  box-shadow: 0px 0px 20px 4px rgb(255 255 255 / 25%);
}

section.section-event-list {
  min-height: 75vh;
  background-image: url("../images/event-bg-left.jpg"),
    url("../images/event-bg-right.png");
  background-size: 240px, 240px;
  background-repeat: no-repeat;
  background-position: bottom 35% left, top 15% right;
}

.event-card {
  box-shadow: 0px 0px 12px 2px rgba(30, 173, 195, 0.5);
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
  margin-bottom: 1.5rem;
  transition: all 0.5s;
}

.event-card:hover {
  box-shadow: 0px 0px 12px 4px rgb(30 173 195 / 77%);
}

.event-card a:hover,
.event-card a:active,
.event-card a:focus,
.event-card a:focus:hover,
.talent-card a:hover,
.talent-card a:active,
.talent-card a:focus,
.talent-card a:focus:hover {
  color: var(--c-white) !important;
}

.event-card,
.event-card-image,
.event-card-image img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.event-card .event-card-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  transition: all 1s;
}

.event-card .event-card-image .skeleton-picture {
  border-radius: 0 !important;
  border-top-left-radius: 12px !important;
  border-top-right-radius: 12px !important;
}

.event-card .event-card-desc {
  height: 100%;
  background: linear-gradient(180deg,
      rgba(30, 173, 195, 0.6) 0%,
      rgba(0, 0, 0, 0) 100%);
  padding: 2rem 1rem 1.5rem 1rem;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
  transition: all 0.5s;
}

.event-card .event-card-desc .word h6 {
  min-height: 50px;
}

.event-card .event-card-date {
  top: -18px;
  left: 0;
  padding: 0.5rem 0.75rem;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.event-card:hover .event-card-date .event-card-d-front {
  transform: scale(0);
  opacity: 0;
}

.event-card .event-card-date .event-card-d-back {
  z-index: 2;
  opacity: 0;
  position: absolute;
  left: -180px;
  top: 8px;
  width: 100%;
  text-align: center;
}

.event-card:hover .event-card-date .event-card-d-back {
  opacity: 1;
  transform: translateX(180px);
}

.modal-event-detail-container .detail-event-desc {
  width: 100%;
  overflow: auto;
  max-height: 24rem;
}

.modal-bg-detail {
  background: transparent linear-gradient(45deg, #ee85ff99 0%, #1eadc399 100%) 0% 0% no-repeat padding-box;
  opacity: 1;
  border-radius: 12px;
  box-shadow: 0 0 16px 4px rgb(255 255 255 / 60%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.modal-bg-detail .modal-header {
  border: 0;
  padding: 0;
}

.modal-bg-detail .modal-body {
  padding: 0;
}

.swiper-detail-event .image {
  height: 30rem;
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}

.swiper-detail-event .image img {
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}

.detail-event-desc {
  padding: 1rem 1.5rem 1rem 1rem;
}

/*====================================== SECTION MENU  ======================================*/
.menu-hero-top .image {
  height: 100vh;
}

.menu-hero-top .subject-title {
  max-width: 100%;
  width: 100%;
  position: absolute;
  bottom: 2rem;
  left: 0;
}

section.section-menu-preview {
  background-image: url("../images/bg-menu-1.png"),
    url("../images/bg-menu-2.png"), url("../images/bg-menu-3.png"),
    url("../images/bg-menu-4.png");
  background-size: 240px, 240px, 160px, 160px;
  background-repeat: no-repeat;
  background-position: right -48px top, bottom right, top left, bottom left;
}

#modalMenubook .modal-body {
  padding: 0;
}

.modal-menu-book iframe {
  width: 100%;
  height: 500px;
}

.menu-book .cta {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
}

.menu-book:hover img {
  opacity: 0.6;
}

.pdf-container {
  visibility: hidden;
  width: 100%;
  height: 37.5rem;
}

#flipbookContainer canvas {
  width: 100% !important;
  height: auto !important;
}

.df-ui-zoomin,
.df-ui-zoomout,
.df-ui-share,
.df-ui-more,
.df-ui-thumbnail {
  display: none !important;
}

#flipbookContainer {
  width: 100%;
  height: 30rem;
  margin: 0 auto;
  background: #ccc;
  position: relative;
  overflow: hidden;
}

/*====================================== SECTION GALLERY  ======================================*/
section.section-masonry .bg-pulse-green {
  top: 5%;
  left: -1rem;
}

section.section-masonry .bg-pulse-green:nth-child(2) {
  top: 25%;
  left: auto;
  right: 0;
}

.gallery-card {
  overflow: hidden;
}

.container-masonry {
  width: 95%;
  height: 100%;
  margin: 0 auto;
}

.grid {
  position: relative;
  width: 100% !important;
  margin: 0 auto;
}

.grid-item {
  width: 30%;
  margin-bottom: 20px;
  border-radius: 5px;
}

.grid-item a,
.grid-item .gallery-card,
.grid-item .gallery-card .image {
  height: 100%;
  display: block;
}

.grid-item .gallery-card .image img {
  border-radius: 16px;
}

.grid-item:nth-child(odd) {
  height: 360px;
}

.grid-item:nth-child(even) {
  height: 460px;
}

.icon-wrapper {
  transition: transform 1s ease;
}

.gallery-card:hover .icon-wrapper {
  transform: scale(1.2);
}

/*====================================== SECTION TALENT  ======================================*/

.menu-hero-talent {
  height: 100vh;
}

.section-talent-detail-hero .image {
  height: 90vh;
  padding: 1rem;
}

.talent-back {
  top: 2rem;
  left: 4rem;
}

.talent-back .btn-primary {
  padding: 0.75rem 1.25rem;
  min-width: auto;
}

.hero-talent-left {
  position: absolute;
  top: 5%;
  left: -160px;
  transform: scale(0);
}

.hero-talent-left .image-hero {
  position: relative;
  z-index: 2;
  max-width: 10rem;
  width: 100%;
}

.hero-talent-astro {
  position: absolute;
  top: 20%;
  left: 15%;
  transform: scale(1);
}

.hero-talent-astro .image-hero {
  position: relative;
  z-index: 2;
  max-width: 6rem;
  width: 100%;
}

.hero-talent-right {
  position: absolute;
  top: 0;
  right: 0;
}

.section-talent-list {
  background-image: url("../images/talent-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.talent-card {
  margin-bottom: 2rem;
}

.talent-card .talent-card-image {
  width: 100%;
  height: 20rem;
}

.talent-card .talent-card-image .bg-talent-pulse {
  width: 15rem;
  height: 15rem;
  left: 15%;
  bottom: 0;
  transition: 1s;
}

.talent-card:hover .talent-card-image .bg-talent-pulse {
  /* left: 20%; */
  transform: scale(1.35);
  filter: blur(50px);
}

.talent-card .talent-card-thumb {
  min-height: 72px;
}

.talent-card-desc {
  padding: 1rem;
  border-radius: 12px;
  background: linear-gradient(180deg,
      rgba(30, 173, 195, 0.6) 0%,
      rgba(0, 0, 0, 0) 100%);
  background-size: 100% 100%;
  transition: all 0.5s;
}

.talent-card:hover .talent-card-desc {
  background-size: 150% 150%;
}

/*====================================== SECTION CAREER  ======================================*/
.hero-page {
  max-width: 100%;
  width: 100%;
  height: 75vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero-page::before {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 8rem;
  width: 100%;
  background-image: -webkit-gradient(linear,
      left top,
      right top,
      from(rgba(0, 0, 0, 0)),
      to(var(--c-body)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), var(--c-body));
  overflow: hidden;
}

.hero-page .subject-title {
  margin-bottom: -2rem;
}

.hero-divider {
  background-color: var(--c-primary);
  height: 0.125rem;
  width: 100%;
  margin: 0rem auto;
}

.career-footer {
  width: 100%;
  height: 75vh;
}

.career-footer::before {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 8rem;
  width: 100%;
  background-image: -webkit-gradient(linear,
      left top,
      right top,
      from(rgba(0, 0, 0, 0)),
      to(var(--c-body)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0), var(--c-body));
  overflow: hidden;
  background-position: right -48px top, bottom right, top left, bottom left;
}

.career-footer::after {
  content: "";
}

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

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

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

.career-card {
  position: relative;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0px 0px 8px 0px rgba(255, 255, 255, 1);
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}

.career-card:hover {
  box-shadow: 0px 0px 8px 0px rgba(221, 51, 250, 0.6);
  /* transform: translate(-50%, 50%); */
}

.career-card .career-card-header {
  min-height: 4.1875rem;
}

.section-career-list .career-card .career-tags {
  min-height: 4.625rem;
  align-items: end;
}

.career-card .career-tags,
.career-desc .career-tags {
  flex-wrap: wrap;
}

.career-card .career-tags .career-tags-card,
.career-desc .career-tags .career-tags-card {
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 24px;
  width: fit-content;
  padding: 0.4rem 0.8rem;
  flex-shrink: 0;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.04);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.04);
}

.career-card .career-moon {
  z-index: 1;
  position: absolute;
}

.career-moon .image {
  width: 128px;
  height: 128px;
}

.career-tags-card .icon {
  display: flex;
}

.btn-collapse {
  padding-left: 0;
  border-bottom: 1px solid #ffff;
  border-radius: 0px;
  transition: all 0.3s;
}

.btn-collapse:hover {
  border-bottom: 1px solid #ffff;
  transition: all 0.3s;
}

.btn-collapse span {
  top: 0.25rem;
  right: 1rem
}

.radio-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.radio-wrapper label {
  display: flex;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.radio-wrapper label input {
  position: absolute;
  left: -9999px;
}

/* --btn-shine-left: rgba(168, 49, 250, 0.5);
--btn-shine-right: rgba(117, 231, 248, 0.65); */
.radio-wrapper label input:checked+span {
  background-color: rgba(117, 231, 248, 0.65);
}

.radio-wrapper label input:checked+span:before {
  box-shadow: inset 0 0 0 1rem var(--c-primary);
}

.radio-wrapper label span {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem 0.375rem 0.375rem;
  border-radius: 2rem;
  font-size: 16px;
  transition: 0.25s ease;
}

.radio-wrapper label span:hover {
  background-color: rgba(117, 231, 248, 0.3);
}

.radio-wrapper label span:before {
  display: flex;
  flex-shrink: 0;
  content: "";
  background-color: #fff;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  margin-right: 0.375rem;
  transition: 0.6s ease;
  box-shadow: inset 0 0 0 0.125em var(--c-primary);
}

.remove-preview {
  margin-top: .5rem;
}

#modalDetailCareer .modal-header {
  padding: 1.5rem 2rem;
}

#modalDetailCareer .modal-body {
  /* max-height: 100; */
}

#modalDetailCareer .modal-footer {
  border-top: none;
}

#modalDetailCareer .modal-body {
  padding: 1rem;
}

#modalDetailCareer .career-modal-card {
  padding-bottom: 16px;
  border-bottom: 1px solid white;
}

.custom-file-contact {
  min-height: 6rem;
  cursor: pointer;
  align-items: center;
  padding: 1.5rem 2rem;
  border: 0.5px solid var(--c-grey);
  border-radius: 0.5rem;
  justify-content: space-between;
  transition: all 0.5s;
}

.custom-file-contact:hover {
  background-color: rgba(117, 231, 248, 0.3);
}

/*====================================== SECTION RESERVATION  ======================================*/
.section-contact .section-contact-reservation {
  padding: 8rem 0 4rem 0;
}

.section-sosmed-contact {
  padding: 4rem 0;
}

.section-contact .planet-reservation-right {
  right: 0;
}

.contact-card .contact-card-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-card .contact-card-content .subject-title {
  padding: 3rem 1.5rem;
}

.bg-gradient-left {
  background: linear-gradient(90deg, #000000 0%, rgba(30, 173, 195, 0.5) 100%);
}

.bg-gradient-right {
  background: linear-gradient(90deg, rgba(30, 173, 195, 0.5) 0%, #000000 100%);
}

#layoutModal .modal-close .close i {
  color: black;
}

#layoutModal .modal-content {
  background: linear-gradient(131.86deg,
      #4f0256 0%,
      rgba(5, 163, 137, 0.6) 101.99%);
}

#layoutModal .modal-content .modal-header {
  padding: 1rem;
}

.section-sosmed-contact .planet-sosmed {
  right: 10%;
  top: -20%;
  z-index: -2;
}

.section-sosmed-contact .bg-pulse-purple {
  top: 30%;
  width: 8rem;
  height: 8rem;
}

/*====================================== SECTION 404  ======================================*/
section.section-notfound {
  max-height: 100vh;
  height: 100vh;
}

section.section-notfound .subject-title h1 {
  font-size: 240px;
  line-height: 200px;
}

section.section-notfound .subject-title {
  top: 30vh;
}

.subject-nf-wrapper {
  bottom: 29vh;
}

.pagenotfound-top {
  height: 65vh;
}

.pagenotfound-bot {
  height: 50vh;
  bottom: 0;
  /* margin-top: -8rem; */
}

/*====================================== SECTION UPCOMING ======================================*/

.cs--container {
  position: relative;
  width: 100%;
  height: 90dvh;
  overflow: hidden;
}

.cs--container .image {
  position: absolute;
  bottom: -8px;
  left: 0;
  margin: 0 auto;
  min-width: 100%;
}

.cs--container .cs-mobile {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
}

.cs--container .desc {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translate(-50%, 0);
}

.cs--container .desc .logo {
  background-color: #ffffffc2;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
}

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

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

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

footer {
  position: relative;
  z-index: 99;
  background-image: url("../images/footer-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 2;
}

/* .footer-top .image
{
  transition: ease-in-out 20s;
}
.footer-top:hover .image
{
  transform: scale(3);
} */
.footer-word-top {
  top: 5rem;
  left: 0;
}

.footer-word-top span {
  display: inline-block;
}

.footer-main {
  /* transform: translate(0, 360px) scale(0.1); */
  /* margin-bottom: -66px; */
  background: transparent linear-gradient(307deg, #14385b 0%, #4c668c 100%) 0% 0% no-repeat padding-box;
  padding: 1rem 2rem;
  /* margin: 0 32px; */
  transition: ease-in-out 1s;
}

.footer-main.onscreen {
  transform: translate(0, 0px) scale(1);
}

.footer-content {
  max-width: 90rem;
  margin: 0 auto;
  /* filter: blur(4px); */
  transition: ease-in-out 0.3s;
  transition-delay: 0.3s;
}

.footer-logo {
  max-width: 96px;
}

.footer-content-right ul li a:hover {
  color: var(--c-tertiary) !important;
}

.footer-content-bottom {
  max-width: 90rem;
  margin: 0 auto;
  /* filter: blur(4px); */
  border-top: 0.5px solid var(--c-white);
  padding: 1rem 1.25rem;
  padding-bottom: 2rem;
  transition: ease-in-out 0.3s;
  transition-delay: 0.3s;
}

.footer-main.onscreen .footer-content,
.footer-main.onscreen .footer-content-bottom {
  filter: blur(0);
}

.footer-contact li a img {
  width: 24px;
  height: 24px;
}

.footer-link ul {
  border-top: 1px solid var(--c-black);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 0.5rem 1rem;
}

.footer-link ul li a:hover {
  color: var(--c-white) !important;
}

.footer-socmed a {
  width: 36px;
  height: 36px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  border-radius: 50%;
  transition: all 0.3s;
}

.footer-menu ul {
  margin: 0;
}

.footer-menu ul li {
  display: block;
  margin-bottom: 10px;
  transition: all 0.3s;
}

.footer-menu ul li a {
  display: inline-block;
  width: auto;
  color: var(--c-orange);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}

.footer-menu ul li:hover a {
  transform: translateY(-3px);
  color: #fff !important;
  border-bottom: 1px solid #fff;
}

.footer-logo .image a {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-logo .image:hover a {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px 0 rgb(255 255 255 / 39%);
}

.footer-copyright {
  border-top: 1px solid var(--c-primary);
  margin-top: -2rem;
}

.footer-copyright .copyright {
  margin-top: 10px;
}

.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;
}

.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;
}

.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;
}

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

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

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

.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,
      transparent 0%,
      #aa31fa58 50%,
      #aa31fa0d 75%);
  animation: loading 1.5s infinite;
}

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

  50% {
    left: 100%;
  }

  100% {
    left: -100%;
  }
}