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

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
}

:root {
  /* --primary-gd: transparent linear-gradient(140deg, #384967 0%, #6f91cd 100%) 0% 0% no-repeat padding-box; */
  --c-primary: #f06c36;
  --c-secondary: #28317e;
  --c-body: #ffffff;
  --c-black: #212529;
  --c-info: #9597a1;
  --c-red: #d0342c;
  --c-white: #ffffff;
  --c-grey: #d1d1d1;
  --c-orange: #e1a427;
  --c-y-green: #00ba01;
  --c-disabled: #dee1e8;
  --c-transparent: transparent;
  --c-skeleton: #f06b3633;
  --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);
}

*,
::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-orange);
  color: var(--c-white);
}

html,
body {
  font-family: "Montserrat", 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.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;
}

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

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

h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
}

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

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

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

h5 {
  font-size: 1.5rem;
  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.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);
}

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: 0.75rem;
  color: var(--c-black);
  font-weight: 500;
  background-color: var(--c-white);
  border: 1px solid #ffffff;
  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 {
  background-color: #ebf2ff !important;
  cursor: pointer;
  height: auto;
  padding: 0.75rem 0.75rem;
  font-size: 1rem;
  /* letter-spacing: 1rem; */
  font-weight: 400;
  /*background-color: 08284b;*/
  border: 0.0625rem solid var(--c-grey);
  color: var(--c-black);
  border: 1px solid;
  border-color: var(--c-grey);
  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:hover,
select.form-control:focus,
select.form-control:active {
  border-color: #bfc7d7;
  color: var(--c-black);
}

.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 #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

label {
  word-break: break-word;
}

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 .btn-close {
  opacity: 1;
  background-image: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background-color: #f54036;
  color: var(--c-primary);
  font-size: 16px;
  position: relative;
  transition: all 0.3s;
  background: none;
  font-size: 1.5rem;
}

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

.modal-body {
  height: 100%;
  padding: 0rem 2rem 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 MODAL POPUP ======================================*/

/* #modalPopupBanner .modal-dialog {
    width: fit-content;
} */



#modalPopupBanner .modal-content {
  background-color: transparent;
  max-width: 30rem;
  margin: 0 auto;
  overflow-y: unset;
}

#modalPopupBanner .modal-header {
  padding: 0;
}

#modalPopupBanner .modal-header .close {
  z-index: 9;
  opacity: 0.8;
  position: absolute;
  top: -10px;
  right: 10px;
  background-color: transparent;
  border: 1px solid var(--c-primary);
  color: var(--c-primary);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

#modalPopupBanner .modal-header .close span {
  font-size: 20px;
  color: var(--c-white);
  position: relative;
  transition: all 0.3s;
}

#modalPopupBanner .modal-header .close:hover {
  opacity: 1;
  background-color: var(--c-primary);
}

#modalPopupBanner .modal-header .close:hover span {
  color: var(--c-white);
}



/*====================================== 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-ws {
  position: relative;
  outline: 0 !important;
  outline-color: transparent !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
  letter-spacing: 1.5;
  align-items: center;
  display: inline-flex;
  border-radius: 32px;
  padding: 12px 16px;
  background-color: transparent;
  -webkit-box-pack: center;
  vertical-align: middle;
  justify-content: center;
  -webkit-box-align: center;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  transition-timing-function: cubic-bezier(0.33, 0, 0.3, 1);
  transition-duration: 0.3s;
  text-decoration: none;
  outline: 0;
}

.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-ws {
  outline: 0 !important;
  outline-color: transparent !important;
  background-color: inherit;
  background: inherit;
}

.btn-primary {
  overflow: hidden;
  z-index: 2;
  color: var(--c-white);
  background-color: var(--c-primary);
  border: 1px solid var(--c-transparent);
  touch-action: manipulation;
}

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

.btn-primary span:first-child {
  position: relative;
  transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 10;
}

.btn-primary span:last-child {
  color: white;
  display: block;
  position: absolute;
  bottom: 0;
  z-index: 100;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translateY(225%) translateX(-50%);
  height: 14px;
  line-height: 13px;
  transition: all 1000ms cubic-bezier(0.48, 0, 0.12, 1);
  transition-delay: 0.15s !important;
}

.btn-primary:after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--c-secondary);
  transform-origin: bottom center;
  transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
  transform: skewY(9.3deg) scaleY(0);
  z-index: 50;
}

.btn-primary:hover:after {
  transform-origin: bottom center;
  transform: skewY(9.3deg) scaleY(2);
}

.btn-primary:hover span:last-child {
  transform: translateX(-50%) translateY(-50%);
  opacity: 1;
  transition: all 3000ms cubic-bezier(0.48, 0, 0.12, 1);
  transition-delay: 0 !important;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
  background-color: var(--c-primary);
  border-color: transparent;
  box-shadow: none;
}

.btn-secondary {
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--c-primary);
  color: var(--c-white);
  background-color: var(--c-transparent);
}

.btn-secondary:hover {
  transform: scale(0.95);
  background-color: var(--c-secondary);
  border-color: var(--c-white);
  color: var(--c-white) !important;
}

.btn-secondary:before,
.btn-secondary:active,
.btn-secondary:focus:hover {
  background-color: var(--c-secondary) !important;
  color: var(--c-white) !important;
  border-color: inherit;
  box-shadow: none;
}

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

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

.btn-transparent {
  border: 1px solid var(--c-primary);
  color: var(--c-primary);
  /* padding: 1rem 2.5rem; */
  /* border-radius: 5px; */
  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-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-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 {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

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

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

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

.f-head {
  font-family: "Montserrat", sans-serif;
}

.f-body {
  font-family: "Montserrat", sans-serif;
}

.light {
  font-weight: 300 !important;
}

.regular {
  font-weight: 400 !important;
}

.medium {
  font-weight: 500 !important;
}

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

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

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

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

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

.rd-xl {
  border-radius: 1rem;
}

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

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

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

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

.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 {
  background-color: var(--c-transparent);
  position: absolute;
  top: 0;
  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 {
  position: relative;
  /* overflow: hidden; */
  width: 100%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans-cubic);
}

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 {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

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

.container-nav .nav-logo a:hover span {
  color: var(--c-primary);
}

.container-nav .nav-logo a img {
  width: 160px;
}

.container-nav .nav-search {
  height: 48px;
  justify-content: flex-start;
  -webkit-box-flex: 2;
  -ms-flex-positive: 2;
  -ms-flex-negative: 2;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 30%;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  margin-right: 24px;
}

.nav-search .nav-search-bar select.form-control {
  height: 100%;
  font-size: 14px;
  padding: 0 8px 0 8px;
  border-radius: 0;
  border: 0;
  border-right: 1px solid var(--c-secondary);
  /* background-color: var(--white); */
  box-shadow: none;
  max-width: 120px;
  cursor: pointer;
}

.nav-search .nav-search-bar input.form-control {
  font-size: 14px;
  padding-right: 16px;
}

.nav-search .nav-search-bar button.btn-search {
  background-color: var(--c-secondary);
  box-shadow: none;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-image: url("../images/general/icon-search.svg") !important;
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center center;
}

.nav-search .nav-search-bar input.form-control:has(input:focus),
.nav-search .nav-search-bar input.form-control:focus,
.nav-search .nav-search-bar input.form-control:focus-within,
.nav-search .nav-search-bar input.form-control:-moz-user-focus {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 100%;
  padding-left: 0;
  padding-right: 50px;
}

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

.search-bar-button {
  position: absolute;
  right: 0;
}

.container-nav .nav-menu {
  /* position: relative; */
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-basis: auto;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 3;
}

.pabrik-menu-list {
  margin-top: 0.25rem;
  column-gap: 1rem;
  row-gap: 0.25rem;
}

.pabrik-menu-list .wrapper {
  width: 29%;
  flex-shrink: 0;
  flex-grow: 0;
}

.container-nav .nav-menu ul {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  text-align: center;
}

.container-nav .nav-menu li.active>a {
  color: var(--c-primary);
  border-bottom: 2px solid var(--c-primary);
}

.container-nav .nav-menu li.li-login {
  width: 35px;
  height: 35px;
  border: 1px solid var(--c-secondary);
}

.container-nav .nav-menu li.li-login:hover {
  background-color: var(--c-white);
  border-color: transparent;
}

.container-nav .nav-menu li.li-login i {
  transform: translateY(9px);
  font-size: 24px;
}

.container-nav .nav-menu li.li-login:hover i {
  color: var(--c-primary);
  transform: scale(1.1) translateY(7px);
}

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

.container-nav .nav-menu li button {
  font-size: 14px;
}

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

.container-nav .nav-menu li a.ab-btn.btn-secondary,
.container-nav .nav-menu li a.ab-btn.btn-primary-gradient {
  padding: 8px 24px;
}

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

.container-nav .nav-menu .menu-cta {
  gap: 16px;
}

.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 {
  padding: 1rem 0;
  right: 0rem;
  top: 3rem;
}

.nav-submenu-content {
  /* max-height: 16.25rem; */
  border-radius: 1rem;
  background-color: var(--c-white);
  height: auto;
  max-width: 90rem;
  box-shadow: 5px 6px 10px 0px rgba(0, 0, 0, 0.15);
}

.nav-submenu-content .nav-submenu-left,
.nav-submenu-content .nav-submenu-left>.image img {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.nav-submenu-content .nav-submenu-left>.image {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  max-width: 42rem;
  height: 100%;
}

.nav-submenu-content .nav-submenu-center {
  background-color: var(--c-white);
  padding: 1rem;
}

.nav-submenu-content .nav-submenu-right {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  background-color: var(--c-primary);
  padding: 1rem;
}

.container-nav .nav-submenu-link ul li a {
  padding: 0;
}

.container-nav .nav-submenu-link ul li a:hover {
  color: var(--c-secondary) !important;
}

.container-nav .nav-submenu-link ul li.navbar-socmed a,
.nav-submenu-mobile .submenu-mobile-link ul li.navbar-socmed a {
  background-color: var(--c-white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-nav .nav-submenu-link ul li.navbar-socmed a .icon,
.nav-submenu-mobile .submenu-mobile-link ul li.navbar-socmed a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.nav-submenu-wrapper {
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: all 0.2s;
}

.nav-logo.pointer,
.search-bar-nav button i {
  color: var(--c-white);
}

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

.nav-link-main:hover .nav-submenu-wrapper {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  animation: all 0.2s;
}

.nav-link-main:hover .caret-icon-nav,
.nav-link-main:hover .caret-icon-nav.fa-caret-down::before {
  content: "\f0d8";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

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

.nav-logo.pointer {
  display: none;
}

.menu-container-mobile {
  visibility: hidden;
  opacity: 0;
  height: 100vh;
  width: 100%;
  position: fixed;
  scale: 0;
  background-color: white;
  z-index: 999;
  top: 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;
}

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

#modalSearch .modal-header .btn-close {
  opacity: 1;
  color: var(--c-white);
  background-color: #f54036;
}

#modalSearch .modal-body {
  background-color: transparent;
  padding: 0.5rem;
  border-radius: 32px;
}

#modalSearch .modal-body .form-group input.form-control {
  font-size: 22px;
  padding-right: 2.25rem;
}

.delete-input {
  position: absolute;
  top: 1.2rem;
  right: 0.75rem;
}

@media only screen and (min-width: 1025px) and (max-width: 1225px) {
  .container-nav .nav-logo a img {
    width: 128px;
    padding-right: 8px;
  }

  .container-nav .nav-search {
    margin-right: 12px;
  }

  .container-nav .nav-menu ul {
    gap: 12px;
  }

  .container-nav .nav-menu li a,
  .container-nav .nav-menu li button {
    font-size: 12px;
  }
}

.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-white);
  background-image: url("../images/general/chevron-right.svg") !important;
  opacity: 1;
  transition: all 0.3s;
  right: 20px;
  padding: 15px;
  border-radius: 50%;

  box-shadow: 0px 0px 10px 0px hsl(0deg 0% 0% / 25%);
}

.swiper-button-prev {
  background-color: var(--c-white);
  background-image: url("../images/general/chevron-left.svg") !important;
  opacity: 1;
  transition: all 0.3s;
  left: 20px;
  border-radius: 50%;
  box-shadow: 0px 0px 10px 0px hsl(0deg 0% 0% / 25%);
}

.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 {
  margin: 0 auto;
  padding: 4rem 0;
}

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

.hero-container {
  padding: 10rem 0rem 8rem 0rem;
}

/*====================================== SECTION HOME PAGE PAGE ======================================*/
.hero-home-container {
  position: relative;
  width: 100%;
  height: 95vh;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

.hero-home-container .hero-home-wrapper {
  padding: 80px 0;
}

.product-hero-wrapper {
  border-left: 4px solid var(--c-primary);
  width: fit-content;
  padding: 0.5rem 1rem 0.5rem 1rem;
}

section.section-home-widget {
  margin-top: -36px;
}

.whistle-blowing-sticky {
  position: fixed;
  top: 30%;
  transform: translateX(212px);
  right: 0;
  z-index: 99;
  background-color: var(--c-primary);
  border-radius: 50px 0px 0px 50px;
  transition: all 0.3s;
}

.whistle-blowing-sticky a {
  padding: 4px 16px;
}

.whistle-blowing-sticky:hover {
  transform: translateX(0px);
  transition: all 0.3s;
}

.home-card-link {
  overflow: hidden;
  height: 400px;
  padding: 1rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.home-card-link .desc h5 {
  line-height: 1.1;
}

.home-card-link:hover {
  box-shadow: 5px 6px 10px 0px rgba(0, 0, 0, 0.15);
}

.home-card-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
  background-image: linear-gradient(180deg, #f06c36 0%, #1f1f217d 100%);
  transition: all 0.5s;
}

.home-card-link:hover::before {
  opacity: 0.6;
}

.home-card-link .cta {
  opacity: 0;
  margin-bottom: -48px;
}

.home-card-link .cta a {
  width: 80px;
  transition: all 0.6s;
}

.home-card-link:hover .cta a {
  width: 100%;
}

.home-card-link:hover .cta {
  opacity: 1;
  margin-bottom: 0;
}

.kontribusi-image {
  height: 360px;
}

.c-kontribusi {
  color: #3A7832;
}

.kontribusi-container .kontribusi-table ul {
  list-style: none;
  counter-reset: item 0;
}

.kontribusi-container .kontribusi-table ul li {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  counter-increment: item;
  border-bottom: 1px solid var(--c-black);
}

.kontribusi-container .kontribusi-table ul li:before {
  position: absolute;
  left: 0;
  top: -4px;
  content: counter(item, decimal-leading-zero) ". ";
  color: var(--c-secondary);
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}

.kontribusi-table {
  max-height: 580px;
  overflow-y: auto;
}

.news-card-home .image {
  height: 400px !important;
}

.bb-card {
  position: relative;
  height: 400px;
  width: 100%;
  z-index: 2;
  border-radius: 0.75rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  /* box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.2); */
  transition: all 0.3s;
}

.bb-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 220px;
  border-radius: 0.75rem;
  /* border-radius: 0 0  0.75rem 0.75rem; */
  background-color: transparent;
  background-image: linear-gradient(180deg, rgba(41, 41, 41, 0)0%, rgba(41, 41, 41, 0.5) 50%);
  z-index: 0;
  transition: all 0.3s;
}

.bb-card:hover::before {
  height: 100%;
}

.bb-card a {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  gap: 0.5rem;
}

.bb-card .bb-card-label {
  top: 0.5rem;
  right: 0.5rem;
  background-color: var(--c-secondary);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
}

.bb-card .wrapper img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.tradingview-widget-container {
  height: 480px !important;
}

.quarry-place-list .wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 104px;
  padding: 1rem;
}

.quarry-place-list .wrapper .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.quarry-place-list .wrapper .image::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 0.75rem;
  background-color: transparent;
  background-image: linear-gradient(180deg, #20283387 0%, #28317e 100%);
  opacity: 0.6;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

section.section-home-news .quarry-place-list .wrapper:hover h6 {
  color: var(--c-primary) !important;
}

section.section-home-news .quarry-place-list .wrapper a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
}

section.section-home-news .quarry-place-list .wrapper a span {
  z-index: 2;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  opacity: 0;
  transition: all 0.3s;
  transition-delay: 0.3s;
}

section.section-home-news .quarry-place-list .wrapper:hover a span {
  opacity: 1;
}

section.section-home-about {
  background-color: #fbfbfb;
}

.home-about-container {
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 5px 6px 10px 0px rgba(0, 0, 0, 0.15);
}

.home-about-video {
  margin-top: 1.75rem;
  width: 100%;
  height: 22.5rem;
  border-radius: 0.75rem;
  cursor: pointer;
}

.home-about-video .image span {
  font-size: 4.5rem;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}

.home-about-video:hover .image span {
  transform: translate(50%, -50%) scale(0.8);
}

section.section-home-dedication {
  padding-bottom: 8rem;
}

.dedication-image {
  height: 15rem;
}

.dedication-year {
  background-color: var(--c-white);
  margin: -80px auto 0 auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border-radius: 8px;
  padding: 0.5rem 1rem;
}

.row-bisnis-card {
  margin-top: -5rem;
  padding: 1.5rem 1rem 2rem 1rem;
  box-shadow: 5px 6px 10px 0px rgba(0, 0, 0, 0.15);
}

.lini-bisnis-card {
  min-height: 32rem;
  overflow: hidden;
  border-radius: 8px;
  transition: all.3s;
  -webkit-box-shadow: 2px 4px 5px 5px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 2px 4px 5px 5px rgba(0, 0, 0, 0.11);
  box-shadow: 2px 4px 5px 5px rgba(0, 0, 0, 0.11);
}

.lini-bisnis-card:hover {
  -webkit-box-shadow: 10px 10px 5px 5px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 10px 10px 5px 5px rgba(0, 0, 0, 0.11);
  box-shadow: 10px 10px 5px 5px rgba(0, 0, 0, 0.11);
}

.lini-bisnis-card span {
  z-index: 1;
  position: absolute;
  right: 15px;
  top: -20px;
  transition: all 0.3s;
}

.lini-bisnis-card:hover span {
  top: 10px;
}

.lini-bisnis-card .image {
  height: 100%;
  width: 100%;
  max-height: 240px;
  overflow: hidden;
  border-radius: 8px 8px 0px 0px;
}

.lini-bisnis-card .image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.lini-bisnis-card:hover .image img {
  transform: scale(1.1);
}

.lini-bisnis-card .lini-bisnis-word .desc {
  color: var(--c-info);
  transition: all 0.3s;
}

.lini-bisnis-card a:hover .desc {
  color: var(--c-black) !important;
}

.lini-bisnis-card .lini-bisnis-word {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 2rem 2rem 2rem;
}

section.section-home-proyek .swiper-pagination-bullet-active {
  background-color: var(--c-primary) !important;
}

.berjalan-home-indicator {
  bottom: 0 !important;
}

section.section-home-whistleblow .form-wbs {
  margin-top: 0;
}

.nav-contact {
  width: 100%;
  justify-content: center;
  flex-wrap: nowrap;
  margin-left: 0;
}

.nav-contact .nav-item {
  width: 100%;
}

.nav-contact .nav-link {
  border-radius: 0;
  background-color: transparent;
  color: var(--c-white);
  font-weight: 600;
  font-size: 18px;
  border: 1px solid var(--c-primary);
  width: 100%;
  padding: 0.75rem 1rem;
  transition: all 0.3s;
}

.nav-contact .nav-link.active,
.nav-contact .show>.nav-link {
  background-color: var(--c-primary);
  border-radius: 0;
  font-weight: 600;
  transition: all 0.3s;
}

.nav-contact .nav-link.active {
  padding: 0.75rem 1rem;
}

.nav-contact .nav-item:nth-child(1) .nav-link {
  border-top-left-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
}

.nav-contact .nav-item:nth-child(2) .nav-link {
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}

.kantor-pusat .pin-content,
.sales-area-jatim .pin-content,
.sales-area-sumatra .pin-content,
.sales-area-sulawesi .pin-content {
  min-width: 14rem;
  max-width: 26rem;
  top: 2rem !important;
}

.sales-area-sumatra .pin-content,
.sales-area-bangka .pin-content,
.sales-area-kalimantan .pin-content {
  top: 13.2rem !important;
  left: 2rem !important;
  border-radius: 16px !important;
  max-width: 32rem;
}

.sales-area-kalimantan {
  top: 38%;
  right: 52%;
}

.sales-area-jatim {
  top: 80%;
  right: 61%;
}

.sales-area-bangka {
  top: 49%;
  right: 75%;
}

.sales-area-sulawesi {
  top: 65%;
  right: 45%;
}



section.section-contact-footer {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

.form-contact-container {
  background-color: var(--c-secondary);
  padding: 1.5rem 2rem;
  border-radius: 2rem;
  box-shadow: 5px 6px 10px 0px rgba(0, 0, 0, 0.15);
}

.subject-cat {
  border-bottom: 1px solid var(--c-white);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}

.sales-card {
  border: 1px solid var(--c-primary);
  padding: 1rem;
  border-radius: 1rem;
}

.sales-card .sales-area-wrapper {
  border-bottom: 1px solid #f06c3645;
  padding-bottom: 0.75rem;
  margin-bottom: 0.5rem;
}

.sales-card .sales-area-wrapper:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.sales-area-item {
  margin-bottom: 1rem;
}

.sales-area-item:last-child {
  margin-bottom: 0;
}

.sales-area-item .cta .btn-secondary:hover {
  color: var(--c-primary) !important;
}

.label-checkbox {
  display: block;
  position: relative;
  padding-left: 1.75rem;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-white);
  cursor: pointer;
  transition: all 0.3s;
}

.label-checkbox:hover {
  color: var(--c-primary);
}

.label-checkbox input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.checkbox__indicator {
  position: absolute;
  top: 5px;
  left: 0;
  height: 18px;
  width: 18px;
  background: #e6e6e6;
  border: 1px solid var(--c-transparent);
  transition: all 0.3s;
}

.label-checkbox:hover input~.checkbox__indicator,
.label-checkbox input:focus~.checkbox__indicator {
  background: rgb(255 157 118 / 23%);
  border-color: var(--c-primary);
}

.label-checkbox input:checked~.checkbox__indicator {
  background: var(--c-primary);
}

.label-checkbox:hover input:not([disabled]):checked~.checkbox__indicator,
.label-checkbox input:checked:focus~.checkbox__indicator {
  background: var(--c-primary);
}

.label-checkbox input:disabled~.checkbox__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}

.checkbox__indicator:after {
  content: "";
  position: absolute;
  display: none;
}

.label-checkbox input:checked~.checkbox__indicator:after {
  display: block;
}

.label--checkbox .checkbox__indicator:after {
  font-family: FontAwesome;
  content: "\f00c";
  color: var(--c-white);
  font-size: 14px;
  left: 2px;
  top: -3px;
  /* transform: rotate(45deg); */
}

.label--checkbox input:disabled~.checkbox__indicator:after {
  border-color: #7b7b7b;
}

/*====================================== SECTION ABOUT PAGE ======================================*/
.about-image {
  margin-top: 3rem;
  padding-right: 2rem;
}

.about-image .wrapper-l,
.about-image .wrapper-r {
  max-width: 20rem;
  width: 100%;
  height: 26.5rem;
}

.about-image .wrapper-r {
  margin-top: -12rem;
  margin-left: auto;
}

.about-image-certif {
  position: absolute;
  max-width: 15rem;
  top: -3rem;
  right: 36px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.about-image-certif .image {
  background-color: var(--c-body);
  padding: 0.5rem;
  max-width: 15rem;
  height: 10rem;
  width: 100%;
}

section.section-about-proyek {
  background-color: #202833;
}

.about-proyek-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.about-proyek-bg .image {
  opacity: 0.2;
}

.proyek-number-card {
  background-color: #fff5edc2;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  min-width: 148px;
}

.about-proyek-wrapper span {
  line-height: 1.2;
  display: block;
  border-bottom: 1px solid var(--c-white);
  padding-bottom: 0.5rem;
}

.about-riset-container {
  padding: 1.5rem;
}

.about-riset-desc .image {
  height: 15rem;
}

/*====================================== SECTION RIWAYAT SINGKAT PAGE ======================================*/

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

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

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

/*====================================== SECTION VISI MISI PAGE ======================================*/
.vm-wrapper-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vm-wrapper-list .vm-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vm-wrapper-list .vm-list .vm-list-icon {
  display: block;
}

.vm-wrapper-list .vm-list .vm-list-icon i::before {
  font-size: 1.3rem;
}

/*====================================== SECTION STANDAR ETIKA ======================================*/
.standar-etika-card {
  height: 320px;
}

.stantik-initials-wrapper .standar-etika-initials h1 {
  color: var(--c-white);
  opacity: 0.9;
  font-size: 14rem;
}

.standar-etika-card .image {
  width: 320px;
  height: 100%;
  position: relative;
}

.standar-etika-card .image::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  background: transparent linear-gradient(180deg,
      #282974 0%,
      #2829740f 29%,
      #2829740f 71%,
      #282974 100%) 0% 0% no-repeat padding-box;
}

.standar-etika-card .image.image-lak::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  background: transparent linear-gradient(180deg,
      #00a1ac 0%,
      #1212120f 29%,
      #1212120f 71%,
      #00a1ac 100%) 0% 0% no-repeat padding-box;
}

.standar-etika-word {
  background-color: var(--c-primary);
  padding: 1rem 2rem;
}

/*====================================== SECTION AUDITOR EXTERNAL ======================================*/
.auditor-external-mobile {
  display: none;
}

.auditor-external-dekstop {
  display: block;
}

/*====================================== SECTION PROYEK ======================================*/

.proyek-card {
  width: 100%;
  height: 25rem;
  box-shadow: 5px 6px 10px 0px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  /* margin-bottom: 1.5rem; */
}

.proyek-card .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}

.proyek-card .image::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 0.75rem;
  background-color: transparent;
  background-image: linear-gradient(180deg, #20283300 0%, #000 100%);
  opacity: 0.6;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.proyek-card:hover .image::before {
  opacity: 1;
}

.proyek-card .proyek-desc p.sc-m {
  line-height: 1.2;
}

.proyek-card:hover .proyek-desc h6 {
  color: var(--c-primary) !important;
}

.proyek-card .proyek-spec-detail {
  margin-top: 12px;
  margin-bottom: -94px;
  opacity: 0;
}

.swiper-proyek-berjalan .proyek-card:hover .proyek-spec-detail,
.proyek-card:hover .proyek-spec-detail {
  opacity: 1;
  margin-bottom: 0;
}

.swiper-proyek-berjalan .proyek-card {
  width: 100%;
  height: 35rem;
  box-shadow: 5px 6px 10px 0px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.swiper-proyek-berjalan .proyek-card .proyek-desc {
  padding: 2rem 4rem;
}

.swiper-proyek-berjalan .proyek-card .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}

.swiper-proyek-berjalan .proyek-card .proyek-spec-detail {
  margin-bottom: -124px;
}


.submenu-content-proyek {
  padding: 0.5rem 1rem 1rem 1rem;
}

.submenu-content-proyek .proyek-card {
  height: 100%;
  box-shadow: none;
  margin-bottom: 0;
}

.submenu-content-proyek .proyek-card .image {
  height: 17.5rem;
  border-radius: 1rem;
}

.submenu-content-proyek .proyek-card .image::before {
  background-image: linear-gradient(180deg, #20283300 0%, #1f1f21f2 100%);
  opacity: 0.6;
}

.submenu-content-proyek .proyek-card:hover .image::before {
  opacity: 1;
}

.submenu-content-proyek .proyek-card .proyek-desc {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  padding: 0.5rem 0.75rem;
}

.swiper-proyek-l .proyek-card .proyek-desc .proyek-desc-loc,
.swiper-proyek-r .proyek-card .proyek-desc .proyek-desc-loc {
  opacity: 0;
  margin-bottom: -24px;
}

.swiper-proyek-l .proyek-card:hover .proyek-desc .proyek-desc-loc,
.swiper-proyek-r .proyek-card:hover .proyek-desc .proyek-desc-loc {
  opacity: 1;
  margin-bottom: 0;
}

ul.pagination {
  margin: 0 auto;
  justify-content: center;
}


.page-link {
  position: relative;
  display: inline-block;
  color: var(--c-primary);
  text-decoration: none;
  border: none;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-radius: 50%;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-radius: 50%;
}

.page-link:hover {
  z-index: 2;
  color: var(--c-black);
  background-color: transparent;
  border-color: transparent;
}

.page-link:focus {
  z-index: 2;
  color: var(--c-black);
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
}


.page-item.active .page-link {
  z-index: 3;
  color: var(--c-white);
  background-color: var(--c-primary);
  border-color: transparent;
}

.page-item:not(:first-child) .page-link {
  margin-left: 0;
}

/*====================================== SECTION PROYEK DETAIL ======================================*/

.section-proyek-detail .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: right;
  background-repeat: no-repeat;
  background-size: 100% auto;
  opacity: 0.25;
  z-index: -1;
}

.project-detail-client .image {
  padding: 0.5rem;
  height: 160px;
  border: 1px solid var(--c-secondary);
}

.proyek-detail-header .progress-bar {
  background-color: #f06c36;
}

.proyek-detail-header .progress {
  max-width: 240px;
  width: 100%;
  margin-top: 4px;
}

.project-detail-gallery {
  height: 320px;
}

/*====================================== SECTION BERITA ======================================*/
.media-nav-wrapper .wrapper {
  background-color: var(--c-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-nav-wrapper .wrapper a {
  color: var(--c-primary) !important;
}

.nav-submenu-content .media-slider-wrapper {
  padding: 0.5rem 0 1rem 1rem;
}

.media-nav-card .image {
  height: 18.5rem;
  border-radius: 1rem;
}

.media-nav-card .image::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
  background-color: transparent;
  background-image: linear-gradient(180deg, #20283300 0%, #1f1f21f2 100%);
  opacity: 0.6;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.media-nav-card:hover .image::before {
  opacity: 1;
}

.media-nav-card .media-nav-desc {
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  padding: 0.5rem 0.75rem;
}

/*====================================== SECTION LINI BISNIS PAGE ======================================*/
.subject-title.border-title-animate {
  position: relative;
}

.subject-title.border-title-animate::before,
.subject-title.border-title-animate::after {
  content: "";
  position: absolute;
  bottom: -8px;
  height: 5px;
  width: 50%;
  background-color: var(--c-primary);
  transition: width 0.5s ease;
}

.subject-title.border-title-animate::before {
  left: 50%;
  transform: translateX(-50%);
}

.subject-title.border-title-animate::after {
  right: 50%;
  transform: translateX(50%);
}

.subject-title.border-title-animate:hover::before,
.subject-title.border-title-animate:hover::after {
  width: 0%;
}

.libis-card {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  padding: 1rem;
  box-shadow: 5px 6px 10px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}

.libis-card:hover {
  box-shadow: 5px 6px 15px 0px rgba(0, 0, 0, 0.35);
}

/*====================================== SECTION SERTIFIKASI PAGE ======================================*/
.sertifikasi-card .image-wrapper {
  height: 17rem;
  /* padding: 1rem; */
  /* border: 4px solid var(--c-secondary); */
}

.sertifikasi-card .image-wrapper.sertif-border {
  padding: 1rem;
  border: 4px solid var(--c-secondary);
}

.sertifikasi-card .image {
  height: 240px !important;
  transition: all 0.8s;
}

.sertifikasi-card:hover .image {
  scale: 1.1;
}

/*====================================== SECTION KINERJA EKONOMI ======================================*/
.section-kinerja-ekonomi .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 50% auto;
  opacity: 0.15;
  z-index: -1;
}

/*====================================== SECTION TANGUNG JAWAB SOSIAL ======================================*/
.accordion-tanggung-jawabsos .accordion-button:not(.collapsed) {
  color: #ffff;
  background-color: #f06c36;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-tanggung-jawabsos .accordion-button {
  color: #f06c36;
  font-weight: 700;
}

.collapsing {
  transition: height 0.3s ease;
  overflow: hidden;
}

.collapsing-transition {
  transition: height 0.3s ease;
  overflow: hidden;
}

.accordion-collapse {
  transition: height 0.3s ease;
  overflow: hidden;
}

.accordion-button {
  border-radius: 0.5rem;
}

.accordion-tanggung-jawabsos .accordion-button:not(.collapsed) {
  color: var(--c-white);
  background-color: var(--c-primary);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-tanggung-jawabsos .accordion-button:not(.collapsed)::after {
  transform: rotate(360deg);
  background-image: url("/images/general/angle-down.svg");
}

.accordion-tanggung-jawabsos .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("/images/general/angle-up.svg");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.4s ease-in-out;
}

.accordion-tanggung-jawabsos .accordion-button:focus {
  z-index: 3;
  border-color: var(--c-primary);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.accordion-tanggung-jawabsos .accordion-header {
  position: sticky;
  top: 0px;
}

/*====================================== SECTION CSR ======================================*/
ul.ul-csr li span {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.csr-image .image {
  width: 100%;
  height: 320px;
}

/*====================================== SECTION SEKRETARIS PERUSAHAAN ======================================*/
.image-wrapper {
  height: 30rem;
}

.sekretaris-profile .image {
  flex-shrink: 0;
  width: 400px;
  height: 400px;
  position: relative;
  background-color: #f06c36;
  padding: 2rem 1rem 0 1rem;
  /* border-radius: 2rem; */
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.18);
}

.sek-head {
  width: 72px;
}

/*====================================== SECTION PRAKTIK TATA KELOLA ======================================*/
.gcg-card {
  background-color: var(--c-white);
  border: 1px solid var(--c-secondary);
  border-radius: 2rem;
  padding: 1rem 1.5rem 1.5rem 1.5rem;
}

.gcg-card:hover {
  border-color: var(--c-primary);
  box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.18);
  transform: scale(1.005);
}

.gcg-card .gcg-card-head {
  flex-basis: 75%;
}

.gcg-card-list {
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.gcg-card-list:hover {
  border-bottom: 1px solid var(--c-primary);
}

/*====================================== SECTION GRATIFIKASI ======================================*/
.image-gratifikasi {
  border: 2px solid var(--c-secondary);
}

.gratifikasi-sticky {
  position: sticky;
  top: 48px;
}

.gratifikasi-card-head {
  border-radius: 0.5rem;
  background-color: var(--c-primary);
  color: var(--c-white);
}

/*====================================== SECTION KOMITE AUDIT ======================================*/
.komite-subject-divider {
  border-bottom: 1px solid rgba(0, 0, 0, 0.24);
}

.container-komite .wrapper-komite {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1rem;
}

.container-komite .wrapper-komite:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.komite-profile .image {
  flex-shrink: 0;
  width: 360px;
  height: 360px;
  position: relative;
  background-color: var(--c-secondary);
  padding: 2rem 1rem 0 1rem;
  /* border-radius: 2rem; */
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.18);
}

/*====================================== SECTION WHISTLE BLOWING ======================================*/

.form-wbs {
  z-index: 9;
  position: relative;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  margin-top: -8rem;
  border-radius: 2rem;
  padding: 1rem;
}

.form-wbs-contact {
  border-radius: 2rem;
  background-color: var(--c-primary);
  padding: 2rem;
  box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.form-wbs-l .image {
  width: 100%;
  position: absolute;
  left: 15%;
  bottom: 0px;
  max-width: 320px;
  z-index: 1;
  padding: 16px 32px 0 32px;
  /* top: 160%; */
  /* transform: translateY(48px); */
}

.image-whitsle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 540px;
  z-index: 0;
  opacity: 0.5;
}


.hero-wbs .hero-container {
  padding: 12rem 0rem 8rem 0rem;
}

.form-wbs-r .cta .btn-primary {
  background-color: var(--c-secondary);
}

.form-wbs-r .cta .btn-primary:hover {
  border-color: var(--c-secondary);
}

/* .form-wbs-r .cta .btn-primary:after {
          bottom: -100%;
   }
.form-wbs-r .cta .btn-primary:hover:after {
  transform: skewY(0deg) scaleY(2);
  } */
.form-wbs-r .cta .btn-primary:after {
  background-color: var(--c-white);
}

.form-wbs-r .btn-primary span:last-child {
  color: var(--c-secondary);
}

.custom-file-contact {
  min-height: 6rem;
  cursor: pointer;
  align-items: center;
  padding: 1.5rem 2rem;
  border: 0.5008px 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 ASESMENT GCG ======================================*/

.asesment-gcg-card {
  background-color: #28317e;
  padding: 1rem 2rem;
  width: 100%;
  flex-wrap: wrap;
}

.swiper-asesment-content {
  padding: 0 4rem;
}

.swiper-button-next.asesment-gcg-next,
.swiper-button-prev.asesment-gcg-prev {
  top: 50%;
}

/*====================================== SECTION MANAJEMEN ======================================*/
.manajemen-card {
  margin-bottom: 32px;
}

.manajemen-card .image::before,
.manajemen-detail-content .image::before {
  z-index: -1;
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 320px;
  background-color: var(--c-secondary);
  border-radius: 50%;
  transition: all 0.5s;
}

.manajemen-card.dir-card .image::before {
  height: 75%;
}

.manajemen-detail-content .image::before {
  z-index: 0;
}

.manajemen-detail-content .image img {
  position: relative;
  z-index: 1;
}

.manajemen-card:hover .image::before,
.manajemen-detail-content .image::before {
  width: 100%;
  height: 100%;
  bottom: 0;
  border-radius: 20px;
}

.manajemen-card .image,
.manajemen-detail-content .image {
  padding: 0.5rem 0.5rem 0 0.5rem;
}

.manajemen-card .image span,
.kip-wg-card .image span {
  position: absolute;
  top: 1rem;
  right: 1rem;
  opacity: 0;
  transition: all 0.3s;
  transition-delay: 0.3s;
}

.manajemen-card:hover .image span,
.kip-wg-card:hover .image span {
  opacity: 1;
}

.manajemen-card.dir-card .image::before,
.manajemen-detail-content.dir-card .image::before {
  background-color: var(--c-primary);
}

.manajemen-detail-text {
  max-height: 27rem;
  overflow: auto;
}

/*====================================== SECTION JASA KONSTRUKSI PAGE ======================================*/
.hero-layanan {}


.hero-popover-content {
  position: absolute;
  top: -100px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  background-color: var(--c-secondary);
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-popover-content.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-popover-content a {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--c-white);
  color: var(--c-white);
  text-decoration: none;
  transition: all .3s;
}

.hero-popover-content a:hover {
  color: var(--c-primary);
}

.hero-popover-content a:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.hero-popover-content a span {
  font-weight: 600;
}


.proyek-card {
  overflow: hidden;
}

.layanan-container-left {
  width: 100%;
  flex-basis: 50%;
}

.layanan-container-left .image {
  width: 100%;
  height: 420px;
}

.layanan-container-right {
  flex-basis: 50%;
}

.layanan-container-right .image-layanan .image {
  height: 15rem;
}

.swiper-proyek-berjalan .swiper-wrapper,
.swiper-product-lainnya .swiper-wrapper,
.swiper-proyek-supply .swiper-wrapper,
.swiper-readymix .swiper-wrapper,
.swiper-card-testimoni .swiper-wrapper,
.swiper-proyek-readymix .swiper-wrapper,
.swiper-quarry .swiper-wrapper,
.swiper-inovasi .swiper-wrapper,
.swiper-standar-etika .swiper-wrapper,
.swiper-laporan-tahunan .swiper-wrapper,
.swiper-laporan-berkelanjutan .swiper-wrapper,
.swiper-laporan-keuangan .swiper-wrapper,
.swiper-csr-lainnya .swiper-wrapper,
.swiper-pernyataan-detail .swiper-wrapper {
  padding-bottom: 2rem;
}

.laporan-tahunan.swiper-pagination,
.laporan-berkelanjutan.swiper-pagination,
.laporan-keuangan.swiper-pagination {
  bottom: 58px;
}

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

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

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  justify-content: center;
}

.quote-card {
  height: auto;
  margin: 0 auto;
  padding: 5rem 3rem;
  border-radius: 1rem;
}

.quote-card .image {
  width: 360px;
  position: absolute;
  left: 3rem;
  bottom: 0;
}

.quote-card .word {
  margin-left: 22.5rem;
}

.quote-bg {
  opacity: 0.3;
  position: absolute;
  top: -2.5rem;
  left: 0;
}

/*====================================== SECTION WORKSHOP PAGE ======================================*/

.section-workshop-desc .workshop-content .workshop-content-desc {
  border-bottom: 4px solid var(--c-secondary);
  padding: 0rem 1rem 1rem 1rem;
}

.pabrik-loc-location .loc-workshop-map {
  height: 27.5rem;
  box-shadow: 5px 6px 10px 0px rgba(0, 0, 0, 0.15);
}

.section-layanan-quote-workshop {
  padding: 10rem 0 4rem 0;
}

.quote-card.qc-workshop {
  min-height: 274px;
  border-radius: 1.3rem;
}

.quote-card.qc-workshop .word {
  margin-right: 22.5rem;
  margin-left: 0;
}

.quote-card.qc-workshop .image-workshop {
  width: 402px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.wse-card {
  cursor: pointer;
}

.wse-card .image {
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
  height: 280px;
}

.wse-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.wse-card:hover .image img {
  transform: scale(1.1);
}

#modalQuaryProduct .worksprod-detail-content .image {
  max-width: 20rem;
}

#modalQuaryProduct .worksprod-detail-content .worksprod-detail-text .worksprod-detail-body {
  max-height: 32.75rem;
  overflow: auto;
}

/*====================================== SECTION BETON PRECAST PAGE ======================================*/

.produk-container-left {
  width: 100%;
  flex-basis: 50%;
}

.produk-container-left .image {
  width: 100%;
  height: 30rem !important;
}

.produk-container-right {
  flex-basis: 50%;
}

.produk-container-right .image-produk .image {
  width: 100%;
  height: 17.5rem;
}

section.section-product-list {
  margin-top: -148px;
}

.section-bp-quote {
  padding-top: 7rem;
}

.bp-card {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 0.75rem;
  overflow: hidden;
}

span.link-to {
  opacity: 0;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.bp-card:hover span.link-to,
.pabrik-bp-card:hover span.link-to,
.batching-card:hover span.link-to {
  opacity: 1;
}

.bp-card .image {
  height: 400px;
  border-radius: 0.75rem;
}

.bp-card .bp-desc {
  margin-bottom: -0.25rem;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  background-color: var(--c-transparent);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.bp-card:hover .bp-desc {
  margin-bottom: 0;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.bp-desc.bp-desc.bp-desc-pos {
  margin-bottom: 0.5rem;
}

.bp-card .bp-desc .bp-desc-wrapper {
  padding: 0 1rem;
  border-radius: 0.75rem;
}

.bp-card .bp-desc.wo-order .bp-desc-wrapper {
  min-height: 50px;
}

.bp-card .bp-desc .bp-desc-wrapper .pileof-sus-wrapper .image {
  height: 100% !important;
  max-width: 24px;
}

.bp-card:hover .bp-desc .bp-desc-wrapper {
  padding: 0.5rem 1rem;
}

.bp-card .bp-desc .bp-desc-wrapper h6 {
  font-size: 12px;
}

.bp-card:hover .bp-desc .bp-desc-wrapper h6 {
  font-size: 18px;
}

.bp-card:hover .bp-desc .bp-desc-wrapper p {
  font-size: 16px;
}

.bp-card:hover .bp-desc .bp-desc-wrapper .pileof-sus-wrapper .image {
  max-width: 32px;
}

.bp-card .bp-desc .bp-desc-wrapper .cta {
  opacity: 0;
  transform: translateY(48px);
}

.bp-card:hover .bp-desc .bp-desc-wrapper .cta {
  opacity: 1;
  transform: translateY(0);
}

.btn-secondary.btn-secondary-second {
  background-color: var(--c-secondary);
  border-color: var(--c-white);
}

.pabrik-sumsel-1 {
  top: 53%;
  right: 76%;
}

/*====================================== SECTION BETON PRECAST DETAIL PAGE ======================================*/

.section-product-detail .product-detail-image {
  margin-top: -15rem;
  position: relative;
}

.list-style-none {
  list-style: none;
}

.ld-product-accordion .ld-product-item {
  margin: 0 0.5rem 0.5rem 0.5rem;
}

.ld-product-accordion .accordion-item,
.accordion-flush .accordion-item:last-child {
  background-color: transparent;
  border-bottom: 1px solid rgb(0, 0, 0);
}

.ld-product-accordion .accordion-button {
  background-color: transparent;
}

.ld-product-accordion .accordion-button:focus {
  z-index: 3;
  border-color: none;
  outline: 0;
  box-shadow: none;
}

.accordion .ld-product-wrapper {
  list-style: auto;
  margin: 0;
}

.ld-product-accordion .ld-product-item table,
.ld-product-accordion .ld-product-item thead,
.ld-product-accordion .ld-product-item tr,
.ld-product-accordion .ld-product-item .table> :not(:last-child)> :last-child>* {
  border: transparent;
}

.ld-product-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  background-image: url("/images/general/angle-down-primary.svg");
}

.ld-product-accordion .accordion-button::after {
  background-image: url("/images/general/angle-up-black.svg");
}

/*====================================== SECTION BETON PRECAST RUMAH DETAIL PAGE ======================================*/

.section-precast-denah .pin-legend {
  display: none;
}

.preden-spec-wrapper .preden-spec-list {
  max-width: 7.5rem;
  text-align: center;
  align-items: center;
}

.preden-spec-wrapper .preden-spec-list .preden-spec-head h5 {
  line-height: 1;
}

.home-denah-wrapper .pin .pin-content {
  min-width: 6rem;
  padding: .75rem 1.25rem;
}

.home-denah-wrapper .pin-content .pin-content-wrapper {
  width: fit-content;
}

.home-denah-wrapper .pin-number {
  display: none;
}

.accordion-house-spec tbody,
.accordion-house-spec td,
.accordion-house-spec tfoot,
.accordion-house-spec th,
.accordion-house-spec thead,
.accordion-house-spec tr {
  border-color: #5b5757;
  border-style: solid;
  border-width: 1px;
  padding: .5rem;
}

/*====================================== SECTION READYMIX PAGE ======================================*/
.rdmx-card {
  position: relative;
  padding: 1rem 1rem 1rem 10rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.6s;
}

.rdmx-card:hover {
  background-color: var(--c-primary);
  box-shadow: 5px 6px 10px 0px rgba(0, 0, 0, 0.15);
}

.rdmx-card .image {
  position: absolute;
  top: 20%;
  left: -160px;
  max-width: 320px;
  width: 100%;
}

.rdmx-class {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.25rem 0.75rem;
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0.75rem;
}

.rdmx-card .rdmx-body {
  min-height: 124px;
}

.rdmx-card .rdmx-animate {
  display: none;
  opacity: 0;
  transform: translateX(-128px);
  transition: all 0.9s;
}

.rdmx-card:hover .rdmx-animate {
  opacity: 1;
  transform: translateX(0);
}

.rdmx-card:hover .rdmx-class {
  background-color: var(--c-white) !important
}

.rdmx-card:hover .rdmx-class span {
  color: var(--c-primary) !important
}

.rdmx-card:hover .rdmx-head h5,
.rdmx-card:hover .rdmx-body p {
  color: var(--c-white);
}

.card-tesmioni {
  width: 100%;
  height: 100%;
  min-height: 23rem;
  box-shadow: 5px 6px 10px 0px rgba(0, 0, 0, 0.15);
  border: 1px solid #d1d1d1;
}

.card-tesmioni .testimoni-company .image {
  width: 64px;
  height: 64px;
  padding: .75rem;
  box-shadow: 3px 5px 8px 0px rgba(0, 0, 0, 0.15);
}

.card-tesmioni .testimoni-rating i {
  font-size: 1.25rem;
}

/*====================================== SECTION PABRIK BETON PRECAST PAGE ======================================*/
section.section-pabrik-beton-hero {
  margin-top: -180px;
}

.pabrik-bp-card,
.batching-card {
  position: relative;
  width: 100%;
  height: 20rem;
  border-radius: 0.75rem;
  overflow: hidden;
}

.pabrik-bp-card .image,
.batching-card .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
}

.pabrik-bp-desc {
  height: 128px;
  width: 100%;
  padding: 0.5rem 1rem 1rem 1rem;
  background-color: transparent;
  background-image: linear-gradient(180deg, #f06c3608 0%, #28317e 100%);
  transition: all 0.6s;
}

.pabrik-bp-card:hover .pabrik-bp-desc {
  height: 150%;
}

.pabrik-bp-card h5 {
  position: relative;
  width: 80px;
  text-align: center;
  transition: all 0.6s;
}

.pabrik-bp-card:hover .pabrik-bp-desc h5 {
  transform: translateY(-200%);
  width: 100%;
  font-size: 30px;
}

.pabrik-bp-card:hover .pabrik-bp-desc p {
  /* transform: translateY(64px); */
  opacity: 0;
}


/*====================================== SECTION INOVASI ======================================*/
.inovasi-card .image {
  width: 100%;
  height: 320px;
}

.inovasi-card .inovasi-head {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 3rem 1rem 1rem 1rem;
  width: 100%;
  height: 128px;
  background-color: transparent;
  background-image: linear-gradient(180deg,
      #20283300 0%,
      var(--c-secondary) 100%);
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
  display: flex;
  align-items: end;
  gap: 0.5rem;
  justify-content: space-between;
  transition: all 0.3s;
}

.inovasi-card:hover .inovasi-head {
  height: 100%;
}

.inovasi-card .inovasi-desc {
  padding: 0.5rem 1rem;
}

.card-content-popular a>.image {
  height: 160px;
}

.card-content-popular .desc .wrapper img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

/*====================================== SECTION SIDEBAR MEDIA ======================================*/
.inovasi-sidebar-wrapper {
  background-color: #FFB400;
  padding: 1rem;
}

/*====================================== SECTION RILIS ======================================*/
.news-card {
  width: 100%;
}

.news-card:hover {
  box-shadow: 5px 6px 10px 0px rgba(0, 0, 0, 0.15);
}

.news-card a {
  display: block;
}

.news-card:hover .news-head .title h6,
.news-card.nc-highlight:hover .news-head .title h4 {
  color: var(--c-primary) !important;
}

.news-card .image {
  width: 100%;
  height: 320px;
}

.news-card .news-head {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 3rem 1rem 1rem 1rem;
  width: 100%;
  height: 160px;
  background-color: transparent;
  background-image: linear-gradient(180deg, #20283300 0%, #28317ecc 50%);
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
  display: flex;
  align-items: end;
  gap: 0.5rem;
  justify-content: space-between;
  transition: all 0.3s;
}

.news-card:hover .news-head {
  height: 100%;
}

.news-card.nc-highlight .image {
  width: 100%;
  height: 32rem;
}

.news-card.nc-highlight .news-head {
  padding: 4rem 2rem 1.5rem 2rem;
}

/*====================================== SECTION PERNYATAAN ======================================*/
.pernyataan-card {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pernyataan-head {
  border-left: 4px solid var(--c-primary);
  padding-left: 1rem;
  transition: all 0.3s;
}

.pernyataan-card:hover .pernyataan-head {
  padding-left: 1.5rem;
}

.pernyataan-detail-card {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid var(--c-black);
  box-shadow: 0.35rem 0.475rem rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.pernyataan-detail-card a {
  min-height: 14rem;
  display: block;
  padding: 1.5rem;
}

.perdet-card-title {
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: var(--c-black);
  transition: all 0.3s;
}

.pernyataan-detail-card .perdet-card-description {
  line-height: 1.5;
  color: var(--c-info);
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.pernyataan-detail-card:hover {
  border: 1px solid var(--c-primary);
}

.pernyataan-detail-card:hover .perdet-card-title {
  color: var(--c-primary);
}

.pernyataan-detail-card:hover .perdet-card-description {
  color: var(--c-black);
}

/*====================================== SECTION WHISTLEBLOWING SYSTEM ======================================*/

.sk-wbp-wrapper {
  padding: 3rem 3rem 5rem 3rem;
}

.skwbp-list {
  display: flex;
  gap: 1rem;
}

.skwbp-list .skwbp-number {
  padding: 1rem;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background-color: var(--c-white);
  color: var(--c-primary);
}

.skwbp-list .skwbp-number h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 2rem;
  width: 2rem;
}

.skwbp-list .skwbp-content {
  margin-top: 1rem;
}

/*====================================== SECTION INOVASI DETAIL ======================================*/
.border-bottom {
  border-bottom: 1px solid black;
  padding-bottom: 3rem;
}

/*====================================== SECTION LAPORAN PERSUHAAN ======================================*/


.laporan-perusahaan-card:hover .news-head .title h6 {
  color: var(--c-primary) !important;
}

.laporan-perusahaan-card a {
  position: relative;
  width: 100%;
  max-width: 18rem;
  height: 25rem;
  box-shadow: 5px 6px 10px 0px rgba(0, 0, 0, 0.15);
}

.laporan-perusahaan-highlight .laporan-perusahaan-card a {
  display: block;
  max-width: 28rem;
  width: 100%;
  height: 540px;
}

.laporan-perusahaan-highlight .laporan-perusahaan-card .laporan-perusahaan-head {
  padding: 2rem;
}

.laporan-perusahaan-card .image::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: transparent;
  opacity: 0;
  background-image: linear-gradient(180deg, #20283300 0%, #28317ecc 100%);
  border-radius: 0.75rem;
  transition: all 0.5s;
}

.laporan-perusahaan-card .image:hover::before {
  opacity: 1;
  height: 100%;
}

.laporan-perusahaan-card .laporan-perusahaan-head {
  background-color: var(--c-primary);
  padding: 2rem 1.5rem;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  display: flex;
  align-items: end;
  gap: 0.5rem;
  justify-content: space-between;
  transition: all 0.3s;
}

.laporan-perusahaan-card:hover .laporan-perusahaan-head {
  opacity: 1;
  height: 100%;
}


.swiper-inovasi .laporan-perusahaan-card .laporan-perusahaan-head {
  max-width: unset;
  min-width: unset;
  border-top-right-radius: 0rem;
  border-top-left-radius: 0rem;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}


/*====================================== SECTION LAPORAN PERSUHAAN DETAIL ======================================*/
.pdf-viewer {
  height: 920px;
  width: 100%;
}

/*====================================== SECTION PABRIK HEAD PAGE ======================================*/

.pabrik-location-map {
  margin: 4rem auto 0 auto;
}

.pabrik-location-map.map-desktop {
  display: block;
}


.pabrik-location-map.map-mobile {
  display: none;
}

.pin {
  position: absolute;
}

.pin .pin-icon {
  cursor: pointer;
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: var(--c-primary);
  z-index: 1;
}

.pin .pin-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #edcc14;
  opacity: 1;
  z-index: -1;
  animation: pulse_pin 3s infinite;
}

.pin .pin-content {
  min-width: 14rem;
  z-index: 9;
  display: inline-block;
  white-space: nowrap;
  position: absolute;
  transform: translateY(-50%);
  transform: translateY(-110%);
  background: #28317e 0% 0% no-repeat padding-box;
  border: 2px solid #f06c36;
  padding: 0.5rem 1rem;
  font-size: 1em;
  top: 0.7rem;
  left: 0.5rem;
  transition: all 0.3s;
  border-radius: 32px 16px 16px 0px;
}

.pin-content.two-list {
  top: 0.8rem;
}

.pin-content.three-list {
  top: 0.9rem;
}

.pin-content.four-list {
  top: 1.1rem;
}

.pin-content .pin-content-wrapper {
  padding: 0.5em 0em;
  width: 100%;
}

.pin-content-text {
  color: var(--c-white) !important;
  font-weight: 500;
  white-space: normal;
  word-wrap: break-word;
  word-break: break-word;
}

.pin .pin-content .pin-content {
  opacity: 1;
  transition: all 0.3s;
}

.pin-content.hidden {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

section.section-map-beton-precast .pabrik-location-map {
  margin-top: 0;
}

.pabrik-banten {
  top: 72%;
  right: 74%;
}

.pabrik-jabar {
  top: 77%;
  right: 71%;
}

.pabrik-jabar .pin-content {
  top: 1.7rem;
}

.pabrik-jateng {
  top: 80%;
  right: 66%;
}

.pabrik-jatim {
  top: 84%;
  right: 59%;
}

.construction-icon {
  top: 57%;
  right: 77%;
}

.hospitality-icon {
  top: 40%;
  right: 54%;
}

.logistic-icon {
  top: 53%;
  right: 77%;
}

.industry-agrobisnis-icon {
  top: 62%;
  right: 74%;
}

@keyframes pulse_pin {
  0% {
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 1;
  }

  70% {
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
    box-shadow: 0 0 0 2rem #edcc14;
  }

  100% {
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
    box-shadow: 0 0 0 0 #edcc1470;
  }
}

/*====================================== SECTION BATCHING HEAD PAGE ======================================*/

.batching-sumsel-1 {
  top: 53%;
  right: 76%;
}

.batching-sumsel {
  top: 50%;
  right: 78%;
}


.batching-jakarta {
  top: 73%;
  right: 72%;
}

.batching-jabar {
  top: 79%;
  right: 69%;
}

.batching-jateng {
  top: 79%;
  right: 66%;
}

.batching-jatim {
  top: 84%;
  right: 59%;
}

.batching-kataraja {
  top: 72%;
  right: 75%;
}

.batching-palumbang {
  top: 35%;
  right: 45%;
}

.batching-ikn {
  top: 38%;
  right: 52%;
}

/*====================================== SECTION PABRIK DETAIL PAGE ======================================*/
.hero-pabrik-detail {
  min-height: 80vh;
}

.hero-pabrik-detail::before {
  background-image: linear-gradient(180deg, #ab3200 0%, #1f1f2100 100%);
}

.hero-pabrik-detail .hero-container {
  padding: 12rem 0rem 4rem 0rem;
}

.hero-pabrik-name span {}

@-moz-keyframes bounce-arrow {

  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@-webkit-keyframes bounce-arrow {

  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce-arrow {

  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.bounce-arrow {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

.pabrik-loc-media .loc-media,
.pabrik-loc-media .image-workshop-loc {
  height: 30rem;
  box-shadow: 5px 6px 10px 0px rgba(0, 0, 0, 0.15);
}

.pabrik-loc-location .loc-map,
.batching-loc-location .loc-map {
  height: 17.5rem;
  box-shadow: 5px 6px 10px 0px rgba(0, 0, 0, 0.15);
}

.pabrik-luas-lahan {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.pabrik-produksi-card {
  padding: 0.5rem 2.5rem 0.5rem 0.5rem;
  background: rgb(239, 239, 239);
  background: -moz-linear-gradient(180deg, rgba(239, 239, 239, 1) 0%, rgba(255, 255, 255, 1) 100%);
  background: -webkit-linear-gradient(180deg, rgba(239, 239, 239, 1) 0%, rgba(255, 255, 255, 1) 100%);
  background: linear-gradient(180deg, rgba(239, 239, 239, 1) 0%, rgba(255, 255, 255, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#efefef", endColorstr="#ffffff", GradientType=1);
  border-radius: 1rem;
}

.pabrik-produksi-card .icon {
  width: 80px;
  height: 80px;
}

.qty-facilities {
  position: absolute;
  top: 30px;
  right: 16px;
}

.swiper-certificate {
  margin-top: -1rem;
  padding: 3.5rem 0 1rem 0;
}

.swiper-button-swiper.certificate {
  position: absolute;
  left: 0;
  bottom: 10.75rem;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.swiper-certificate .sertif-content {
  position: relative;
  z-index: 2;
  opacity: 0;
  transition: all 0.4s;
}

.swiper-certificate .swiper-slide-active .sertif-content {
  opacity: 1;
}

.certificate-card {
  min-height: 32rem;
  max-width: 24rem;
  margin: 0 auto;
}

.certificate-card .certificate-image {
  height: 21.5rem;
  border: 4px solid transparent;
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
}

/* .swiper-certificate .swiper-slide.swiper-slide-active .certificate-card .certificate-image {
  border-color: var(--c-secondary);
} */

.swiper-button-swiper.award {
  position: absolute;
  left: 0;
  bottom: 9%;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.sbw-certificate {
  max-width: 25rem;
}

section.section-pabrik-instagram {
  background-color: transparent;
  background-image: linear-gradient(130deg, #ffe100 0%, #d303ac 100%);
  opacity: 1;
  transition: background 0.3s, border-radius 0.3s, opacity 0.35;
}

section.section-pabrik-instagram .subject-title:hover {
  background-color: var(--c-primary) !important;
}

.swiper-proyek-sebelumnya .swiper-pagination,
.swiper-project-gallery .swiper-pagination {
  margin-top: 24px;
}

.pabrik-another-card {
  max-width: 240px;
  width: 100%;
  height: 128px;
  border-radius: 20px;
  overflow: hidden;
}

.pabrik-another-card a {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.pabrik-another-card:hover .word h5 {
  color: var(--c-primary) !important;
}

.pabrik-another-card .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.pabrik-another-card:hover .image::before {
  height: 200%;
}

.pabrik-another-card .image img {
  border-radius: 20px;
}

/*====================================== SECTION BATCHING PLANTS PAGE ======================================*/
section.section-batching-plant-hero {
  margin-top: -180px;
}

.pabrik-bp-card {
  position: relative;
  width: 100%;
  height: 20rem;
  border-radius: 0.75rem;
  overflow: hidden;
}

.pabrik-bp-card .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
}

.batching-card-desc {
  width: 100%;
  height: 80px;
  padding: 0.5rem 1rem 1rem 1rem;
  background-color: transparent;
  background-image: linear-gradient(180deg, #f06c3608 0%, #f06c36 100%);
  transition: all 0.6s;
}

.batching-card:hover .batching-card-desc {
  height: 100%;
}

.batching-card h5 {
  text-align: center;
  transition: all 0.6s;
}

.batching-card:hover .pabrik-bp-desc h5 {
  width: 100%;
  font-size: 30px;
}

/*====================================== SECTION BATCHING PLANTS DETAIL PAGE ======================================*/
section.section-batching-plant-hero-detail {
  margin-top: -140px;
}

.bacthing-cluster-fitur {
  gap: 4rem;
}

.bacthing-cluster-card {
  min-width: 480px;
}

.section-batching-loc .batching-loc-location {
  max-width: 34rem;
}

/*====================================== SECTION QUARRY PAGE ======================================*/
.quarry-card .image {
  height: 240px;
}

.quarry-card .name {
  background-color: #f06c36b8;
  left: 0rem;
  bottom: 0rem;
  width: 100%;
  height: auto;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

.quarry-card .name .name-wrapper {
  padding: 0.5rem 0.5rem 0.75rem 0.5rem;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

.quarry-card .cta .btn-secondary {
  background-color: var(--c-secondary);
  padding: 6px 12px;
}

.quarry-place .image {
  height: 30rem;
  border-radius: 2rem;
}

.quarry-place .image::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
  background-color: transparent;
  background-image: linear-gradient(180deg, #20283300 0%, #f06c368f 100%);
}

.quarry-place .image .name {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  padding: 1rem;
  text-align: center;
}

.quarry-tools .wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.quarry-tools .wrapper .image {
  /* width: 104px;
  height: 104px; */
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

section.section-quarry-loc .pabrik-loc-location .loc-map {
  height: 22.5rem;
}

.quarry-bojonegara {
  top: 73%;
  right: 75%;
}

.quarry-cikopo {
  top: 78%;
  right: 70%;
}

.quarry-lumbang {
    top: 83%;
    right: 61%;
}

.quarry-palu {
  top: 44%;
  right: 44%;
}

/*====================================== SECTION ARTICLE ======================================*/
.word-article .thumbnail-wrapper .image,
.word-article .thumbnail-wrapper .image img {
  max-height: 28.75rem;
}

.word-article p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.word-article .writter-desc p {
  margin: 0;
}

/*====================================== SECTION KIP ======================================*/
.nav-kip {
  width: 100%;
  justify-content: center;
}

.nav-kip .nav-link {
  border-radius: 2rem;
  background-color: transparent;
  color: var(--c-primary);
  border: 1px solid var(--c-primary);
}

.nav-kip .nav-link.active,
.nav-kip .show>.nav-link {
  background-color: var(--c-primary);
  border-radius: 2rem;
  font-weight: 600;
  transition: all 0.3s;
}

.nav-kip .nav-link {
  padding: 0.75rem 1rem;
  transition: all 0.3s;
}

.nav-kip .nav-link.active {
  padding: 0.75rem 1.5rem;
}

.accordion-kip .accordion-header {
  background-color: #fff5ed !important;
}

.accordion-kip .accordion-button:hover {
  background-color: #fff5ed !important;
}

.accordion-kip .accordion-button {
  border-radius: 0;
  font-weight: 700;
  font-size: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-kip .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--c-primary);
  box-shadow: none;
  border-bottom: 1px solid var(--c-primary);
}

.accordion-kip .accordion-item {
  background-color: #fff5ed;
  border: 0;
}

.accordion-sub .accordion-item {
  background-color: transparent;
  border: 1px solid #fff5ed;
}

.accordion-button:focus {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: none;
}

.form-kip-container {
  margin: 2rem auto;
}

.kip-wg-card {
  position: relative;
  width: 100%;
  height: 400px;
}

.kip-wg-card .image {
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.kip-wg-card .image::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 0.75rem;
  background-color: transparent;
  background-image: linear-gradient(180deg, #ffffff 50%, #000000 100%);
  opacity: 0.6;
  transition: all 0.3s;
}

.kip-wg-card:hover .image::before {
  transform: scale(1.5);
}

.kip-wg-card .wg-card-logo {
  max-width: 240px;
  width: 100%;
  margin: 0 auto;
  transition: all 0.3s;
}

.kip-wg-card:hover .wg-card-logo {
  transform: scale(1.1);
}

/*====================================== SECTION KARIR  ======================================*/

.career-card {
  max-width: 840px;
  height: 100%;
}

.career-card .image {
  max-width: 360px;
}

.career-intermezo-card {
  min-width: 128px;
  background-color: #fff5ed;
  padding: 1rem;
  border-radius: 1rem;
}

.form-career {
  z-index: 9;
  position: relative;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  border-radius: 2rem;
  padding: 1rem;
}

.form-career-wrapper {
  border-radius: 2rem;
  background-color: var(--c-secondary);
  padding: 2rem;
  box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.18);
  -webkit-box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.career-img {
  bottom: 1rem;
  left: 0;
  width: 480px;
}

/*====================================== SECTION HUBUNGI KAMI ======================================*/

.bg-contact-us {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding: 4rem 2rem;
  z-index: 9;
}

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

.card-contact-qna {
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 12px;
  padding: 2rem 1rem;
}

.card-contact-qna .content-contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.halo-wsbp-card {
  background-color: var(--c-secondary);
  align-items: center;
  justify-content: center;
  display: flex;
  height: 100%;
  width: 100%;
  padding: 4rem 2rem;
}

.body-card-sales .question {
  min-width: 90px;
}

.body-card-sales a{
  color: var(--c-white);
}

.body-card-sales a:hover{
  color: var(--c-primary);
}

.card-sales-area {
  height: 100%;
  background-color: var(--c-secondary);
  border-radius: 12px;
  padding: 1rem 2rem;
  color: white;
}

/*====================================== SECTION SEARCH PAGE  ======================================*/
.search-list {
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.search-list:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.search-list .search-title a {
  opacity: 1;
  text-decoration-color: var(--c-primary);
}

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

/*====================================== 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 EMPTY WRAPPER ======================================*/

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

/*====================================== SECTION FOOTER CONTACT PAGE ======================================*/

.section-footer-contact {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-footer-contact::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: transparent;
  background-image: linear-gradient(110deg, #ffffff 66%, #f2295b00 60%);
  opacity: 0.7;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.sales-arealoc-wrapper {
  background-color: var(--c-secondary);
  border-radius: 12px;
  padding: 0;
  margin-top: 0rem;
  height: 0px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s ease;
}

.sales-arealoc-wrapper.show {
  padding: 1rem;
  margin-top: 0.5rem;
  justify-content: center;
  opacity: 1;
  height: 13rem;
  transform: translateY(0);
}

.sales-arealoc-contact a,
.sales-arealoc-contact i {
  color: var(--c-primary);
  transition: all 0.3s;
}

.sales-arealoc-contact:hover a,
.sales-arealoc-contact:hover i {
  color: var(--c-orange);
}

.form-your-contact {
  opacity: 0;
  height: 0px;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.form-your-contact.show {
  opacity: 1;
  height: 30rem;
  transform: translateY(0);
}

.form-contact-container .select2-container {
  width: 100% !important;
}

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

footer {
  position: relative;
  z-index: 9;
}

/* .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: #efefef;
  padding: 2rem 1rem;
  /* margin: 0 32px; */
  transition: ease-in-out 1s;
}

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

.footer-content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  transition: ease-in-out 0.3s;
  transition-delay: 0.3s;
}

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

.footer-content-logo .image {
  max-width: 128px;
}

.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.5008px 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-list .active {
  color: var(--c-primary);
}

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

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

.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: 1rem;
}

.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%,
      #f06b3671 50%,
      #f06b3615 75%);
  animation: loading 1.5s infinite;
}

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

  50% {
    left: 100%;
  }

  100% {
    left: -100%;
  }
}