@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --bs-primary: #ffde00;
  --base-color: #ffde00;
  --very-light-base-color: #fbeee1;
  --second-color: #fd679c;
  --third-color: #f8430a;
  --four-color: #3f78e0;
  --bs-primary-rgb: 53, 182, 141;
  --bs-secondary-rgb: 255, 127, 0;
  --primary-font: "Inter", sans-serif;
  --alt-font: "Inter", sans-serif;
}

.primary-font {
  font-weight: var(--primary-font);
}

.alt-font {
  font-weight: var(--alt-font);
}

.bg-primary {
  background-color: var(--base-color) !important;
}

.bg-very-light-base-color {
  background-color: var(--very-light-base-color);
}

.bg-second-color {
  background-color: var(--second-color);
}

.text-base-color {
  color: var(--base-color);
}

.text-black {
  color: #000000;
}

.text-second-color {
  color: var(--second-color);
}

/*==========================================================================
* GENERAL
==========================================================================*/
.rounded-5 {
  border-radius: 1.5rem;
}

.bg-soft-primary {
  background-color: #f7f9fd !important;
}

/*--------------------------------------------------------------
# Font
--------------------------------------------------------------*/
.primary-font {
  font-family: "Inter", sans-serif;
}

.alt-font {
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
}

/*==========================================================================
* BUTTON CSS
==========================================================================*/
.btn-base-color {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--base-color);
  --bs-btn-border-color: var(--base-color);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--base-color);
  --bs-btn-hover-border-color: var(--base-color);
  --bs-btn-focus-shadow-rgb: 92, 140, 229;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--base-color);
  --bs-btn-active-border-color: var(--base-color);
  --bs-btn-active-shadow: 0rem 0.25rem 0.75rem rgba(30, 34, 40, 0.15);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--base-color);
  --bs-btn-disabled-border-color: var(--base-color);
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--base-color);
  --bs-btn-border-color: var(--base-color);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--base-color);
  --bs-btn-hover-border-color: var(--base-color);
  --bs-btn-focus-shadow-rgb: 92, 140, 229;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--base-color);
  --bs-btn-active-border-color: var(--base-color);
  --bs-btn-active-shadow: 0rem 0.25rem 0.75rem rgba(30, 34, 40, 0.15);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--base-color);
  --bs-btn-disabled-border-color: var(--base-color);
}

.btn-yellow {
  --bs-btn-color: #000;
  --bs-btn-bg: #ffde00;
  --bs-btn-border-color: #ffde00;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffde00;
  --bs-btn-hover-border-color: #ffde00;
  --bs-btn-focus-shadow-rgb: 220, 165, 87;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffde00;
  --bs-btn-active-border-color: #ffde00;
  --bs-btn-active-shadow: 0rem 0.25rem 0.75rem rgba(30, 34, 40, 0.15);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ffde00;
  --bs-btn-disabled-border-color: #ffde00;
}

.gradient-1 {
  background-image: linear-gradient(90deg, #1a2976 0%, #2486ab 75%);
}

/* CUSTOM BUTTON */

button.scroll-top:focus {
  outline: none;
}

.scroll-top.open {
  bottom: 40px;
}

.scroll-top {
  width: 45px;
  height: 45px;
  line-height: 45px;
  position: fixed;
  bottom: 105%;
  right: 25px;
  font-size: 16px;
  border-radius: 50%;
  z-index: 99;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: var(--base-color);
  transition: 1s ease;
  border: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.scroll-top span {
  color: #fff;
}

.scroll-top:after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0) 80%
  );
  animation: ripple 1.7s ease-out infinite;
  -webkit-animation: ripple 1.7s ease-out infinite;
}

.wa-btn::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  animation: ripple 1.6s ease-out infinite;
  opacity: 1;
  background: #4bc75a;
  border-radius: 50%;
  -webkit-animation: ripple 1.6s ease-out infinite;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
  }
}

/* END WA/ APPO BTN / SCROLL TOP */

.btn-group-very-sm > .btn,
.btn-very-sm {
  --bs-btn-padding-y: 0.4rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 0.7rem;
  --bs-btn-border-radius: 0.4rem;
}

.btn-group-very-sm > .btn-icon.btn,
.btn-icon.btn-very-sm {
  padding-top: 5px;
  padding-bottom: 5px;
}

.btn-group-very-sm > .btn-icon.btn i,
.btn-icon.btn-very-sm i {
  font-size: 0.8rem;
}

/*==========================================================================
* BACKGROUND SECTION
==========================================================================*/
.background-hero {
  position: relative;
  z-index: 1;
  /* overflow: hidden; */
}

.background-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      90deg,
      rgb(24 41 87 / 85%) 0%,
      rgb(0 146 171 / 80%) 75%
    ),
    url(../../../images/lain-lain/bg-layanan.webp);
  /* background: url("../../../images/lain-lain/bg-layanan.webp"); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  z-index: -1;
  /* opacity: 1; */
}

@media (max-width: 991.98px) {
  .background-hero::before {
    width: 100%;
    height: 60%;
    background-position: right;
  }
}

.background-1 {
  position: relative;
  z-index: 1;
  /* overflow: hidden; */
}

.background-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../../images/lain-lain/background-1.webp");
  /* background: linear-gradient(to bottom, rgb(255 255 255), rgb(0 0 0 / 0%)),
    url("../../../images/lain-lain/bg-welcome.webp"); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.1;
}

.background-11 {
  position: relative;
  z-index: 1;
  /* overflow: hidden; */
}

.background-11::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../../images/lain-lain/background-2.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.1;
}

.background-2 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.background-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../../images/lain-lain/background-1.webp");
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.2;
}

.background-3 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.background-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      90deg,
      rgb(255 255 255 / 90%) 0%,
      rgb(255 255 255 / 90%) 75%
    ),
    url(../../../images/lain-lain/bg-layanan.webp);
  /* background: url("../../../images/lain-lain/bg-layanan.webp"); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  z-index: -1;
  /* opacity: 1; */
}

.background-4 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.background-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../../images/lain-lain/bg-sertifikasi-instansi.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 35%;
  z-index: -1;
  opacity: 0.2;
}

.background-cta {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.background-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgb(0 0 0 / 83%) 0%,
    rgb(0 0 0 / 15%) 100%
  );
  z-index: -1;
}

.background-5 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.background-5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../../images/lain-lain/bg-layanan-detail.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  /* opacity: 0.05; */
}

.background-footer {
  position: relative;
  z-index: 1;
  /* overflow: hidden; */
}

.background-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../../images/lain-lain/background-1.webp");
  filter: grayscale(1) brightness(100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.05;
}

/*==========================================================================
* Navbar
==========================================================================*/
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: black;
  font-weight: 700;
}

.navbar-nav .nav-link {
  position: relative;
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2.5px;
  background-color: black;
}

@media (max-width: 576px) {
  .navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: var(--base-color);
  }
}

.nav-link:focus,
.nav-link:hover {
  color: black;
  font-weight: 800;
}

.navbar-text a,
.navbar-text a:focus,
.navbar-text a:hover {
  color: black;
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .navbar-expand-lg .navbar-brand {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

/* Welcome Text */
.bg-dot.primary {
  background-image: radial-gradient(var(--base-color) 2px, transparent 2.5px);
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

.floating-image {
  animation: floating 3s ease-in-out infinite;
}

@media (min-width: 767px) {
  .bg-welcome-text {
    right: 0px;
    bottom: 15px;
    top: 15px;
    width: 33%;
  }
}

@media (max-width: 767px) {
  .bg-welcome-text {
    right: 0px;
    bottom: 15px;
    width: 80%;
  }
}

/* OUR PARTNER */
@media (min-width: 767px) {
  .img-our-partner {
    bottom: -100px;
    left: 50%;
    opacity: 0.15;
    transform: translateX(-50%);
    width: 100%;
  }
}

@media (max-width: 767px) {
  .img-our-partner {
    bottom: 0px;
    /* left: 50%; */
    opacity: 0.15;
    transform: scale(3);
  }
}

/* CKE Editor*/
.description-list a {
  color: var(--main-color);
}

.description-list ul li {
  list-style: initial;
}

.description-list p strong {
  color: var(--black);
}

.description-list hr {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.header-title p strong {
  /* font-style: italic; */
  text-decoration: underline;
}

.desc-cta p {
  margin-bottom: 0px;
}

/* Artikel */
article .artikel:hover .card-body a.btn-outline-primary {
  background-color: var(--bs-primary) !important;
  color: #ffffff !important;
}

.truncate-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truncate-text-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truncate-text p {
  line-height: 1.6;
}

/* header page */
image-wrapper.bg-overlay:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #000000cf;
  opacity: 0.8;
  /* background: linear-gradient(to right, rgb(16 26 37), rgb(0 0 0 / 32%)); */
}

/*--------------------------------------------------------------
# FOOTER SECTION
--------------------------------------------------------------*/
.cs_footer_widget_seperator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
}

.cs_footer_widget_seperator span {
  height: 5px;
  width: 80px;
  border-radius: 5px;
}

.cs_footer_widget_seperator span:nth-child(2) {
  width: 15px;
}

.cs_footer_widget_seperator span:nth-child(3) {
  width: 6px;
}

/* Sosmed */
.cs_footer_widget .cs_social_btns.cs_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.cs_social_btns.cs_style_1 a {
  width: 26px;
  height: 26px;
  font-size: 11px;
  /* border: 1px solid; */
  border-color: var(--medium-gray);
}

.cs_footer_widget .cs_social_btns.cs_style_1 a {
  height: 30px;
  width: 30px;
  border-radius: 50px;
  border: 1px solid #878686;
  /* background-color: #e9e9e9; */
  color: #ffffff;
  font-size: 16px;
}

/* .cs_footer_widget .cs_social_btns.cs_style_1 a:hover {
  background-color: var(--base-color);
  background: linear-gradient(to right, #fb6905, #ffa506);
  -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  color: white;
} */

.cs_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/*--------------------------------------------------------------
# ARTIKEL
--------------------------------------------------------------*/

/* Nav */
@media (max-width: 767px) {
  .homepage1-body,
  html {
    overflow-x: hidden !important;
  }
}

/* Accordion */
.border-radius-none {
  border-radius: 0px !important;
}

/* Our Partner */
.our-partner img {
  filter: grayscale(100%) brightness(0.9) opacity(0.5);
  transition: filter 0.5s ease;
}

.our-partner img:hover {
  filter: grayscale(0%) brightness(1) opacity(1);
  transition: filter 0.5s ease;
}

/*  */
.text-line22 {
  position: relative;
  vertical-align: top;
  /* padding-left: 1.4rem; */
}

.text-line22:before {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: -6px;
  /* transform: translateY(-60%); */
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--bs-primary);
}

.accordion-wrapper .card-header button:before {
  right: 0.3rem !important;
}

/* =============================== */
.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  position: relative;
  padding-bottom: 20px;
}

.section-title .title {
  margin-bottom: 0;
  font-size: 28px;
}

.section-title-line {
  width: 100%;
  height: 5px;
  position: absolute;
  left: 0;
  bottom: 0;
  border: 1px solid var(--bs-primary);
  border-left: none;
  border-right: none;
}

.section-title-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 40px;
  height: 5px;
  background: var(--bs-primary);
}

.section-title-line::after {
  content: "";
  position: absolute;
  left: 36px;
  top: -1.5px;
  width: 10px;
  height: 6px;
  background: var(--bs-white);
  clip-path: polygon(40% 0, 100% 0%, 60% 100%, 0 100%);
}

/* Sosmed Navbar */
.nav-sos > a {
  padding-left: 7px;
  padding-right: 7px;
  border-style: solid;
  border-width: 0 0 0 1px;
  border-color: var(--bs-border-color);
  margin: 0;
}

.nav-sos > a:last-child {
  border-right: 1px solid var(--bs-border-color);
}

/* Tentang Kami */
.img-tentang-kami {
  bottom: -75px;
  right: -25px;
}

@media (max-width: 991.98px) {
  .img-tentang-kami {
    bottom: -65px;
    right: -5px;
  }
}

/* Navbar */
.navbar-clone.active {
  transform: translateY(0%);
}

.swiper-controls .swiper-navigation .swiper-button {
  background: rgb(255 255 255 / 25%);
  color: #ffffff80;
  border: 0;
  box-shadow: 0 0.25rem 0.75rem rgba(30, 34, 40, 0.02);
  width: 2.2rem;
  height: 2.2rem;
  line-height: inherit;
  border-radius: 100%;
  text-shadow: none;
  transition: all 0.2s ease-in-out;
}

/*.swiper-controls .swiper-navigation .swiper-button:hover {*/
/*    background: rgba(var(--bs-white-rgb), .9)*/
/*}*/

/*CARD LAYANAN*/
.card-layanan {
  transition: all 0.3s ease-in-out;
}

.card-layanan:hover {
  transform: scale(1.04);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0.25rem 1.75rem rgb(30 34 40 / 33%) !important;
}

/*FLOATING WA*/
.hidden {
  display: none;
}

@keyframes bounce {
  0%,
  25%,
  50%,
  75%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-12px);
  }
}

@keyframes rotateBounceButton {
  0% {
    transform: rotate(0deg) scale(1) translateY(0);
  }

  20% {
    transform: rotate(0deg) scale(1) translateY(-20px);
    /* Bounce up */
  }

  40% {
    transform: rotate(0deg) scale(1) translateY(-12px);
    /* Bounce higher */
  }

  50% {
    transform: rotate(0deg) scale(1) translateY(0);
    /* Bounce back down */
  }

  60% {
    transform: rotate(0deg) scale(1) translateY(0);
    /* Continue neutral */
  }

  80% {
    transform: rotate(45deg) scale(1) translateY(0);
    /* Start rotating */
  }

  100% {
    transform: rotate(0deg) scale(1) translateY(0);
    /* Finish rotation */
  }
}

.sticky-button {
  position: fixed;
  background-color: #25d366;
  bottom: 20px;
  left: 20px;
  border-radius: 50px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  z-index: 20;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  animation: rotateBounceButton 1s infinite ease-in-out;
}

.chat-menu:checked ~ .sticky-button {
  animation: none;
}

.sticky-button svg {
  margin: auto;
  fill: #fff;
  width: 35px;
  height: 35px;
}

.sticky-button a,
.sticky-button label {
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 55px;
  height: 55px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.sticky-button label svg.close-icon {
  display: none;
}

.sticky-chat {
  position: fixed;
  bottom: 70px;
  left: 20px;
  width: 200px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 21;
  opacity: 0;
  visibility: hidden;
}

.sticky-chat a {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  color: #505050;
}

.sticky-chat svg {
  width: 35px;
  height: 35px;
}

.sticky-chat .chat-content {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.sticky-chat .chat-header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background-color: #25d366;
  overflow: hidden;
}

.sticky-chat .chat-header:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 75px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 70px 0 5px 0;
}

.sticky-chat .chat-header svg {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  fill: #fff;
}

.sticky-chat .chat-header .title {
  padding-left: 15px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  color: #fff;
}

.sticky-chat .chat-header .title span {
  font-size: 11px;
  font-weight: 400;
  display: block;
  line-height: 1.58em;
  margin: 0;
  color: #f4f4f4;
}

.sticky-chat .chat-text {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 20px;
  font-size: 12px;
}

.sticky-chat .chat-text span {
  display: inline-block;
  margin-right: auto;
  padding: 10px;
  background-color: #f0f5fb;
  border-radius: 0px 15px 15px;
}

.sticky-chat .chat-text span:after {
  content: "just now";
  display: inline-block;
  margin-left: 2px;
  font-size: 9px;
  color: #989b9f;
}

.sticky-chat .chat-text span.typing {
  margin: 15px 0 0 auto;
  padding: 10px;
  border-radius: 15px 0px 15px 15px;
}

.sticky-chat .chat-text span.typing:after {
  display: none;
}

.sticky-chat .chat-text span.typing svg {
  height: 13px;
  fill: #505050;
}

.sticky-chat .chat-button {
  display: flex;
  align-items: center;
  margin-top: 15px;
  padding: 12px 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.sticky-chat .chat-button .custom-icon {
  width: 35px;
  height: 35px;
  margin-left: auto;
  background-color: #25d366;
}

.sticky-chat .chat-button .custom-icon i {
  font-size: 20px;
}

.chat-menu:checked + .sticky-button label {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.chat-menu:checked + .sticky-button label svg.chat-icon {
  display: none;
}

.chat-menu:checked + .sticky-button label svg.close-icon {
  display: table-cell;
}

.chat-menu:checked + .sticky-button + .sticky-chat {
  bottom: 90px;
  opacity: 1;
  visibility: visible;
}

.custom-icon {
  color: white;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  flex-shrink: 0;
}

.card-artikel:hover {
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.33) !important;
  transition: all 0.3s ease-in-out;
}

.icon-svg,
.icon-svg.icon-svg-lg {
  width: 4rem;
  height: 4rem;
}

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  /* font-weight: var(--bs-nav-link-font-weight); */
  font-weight: 600;
  color: black;
  background: 0 0;
  border: 0;
  letter-spacing: 0.5px !important;
  text-transform: uppercase;
  transition: color 0.2s ease-in-out;
}

.misi ul,
.nilai ol {
  padding-left: 1rem;
}

.nilai ol li p:nth-child(1) {
  margin-bottom: 0px;
}

.images-custom-container {
  padding: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.book-detail-item {
  padding: 5px 0;
  margin: 0;
  border-bottom: 1px dashed var(--bs-primary);
  height: 100%;
}

.shop-single-price {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 23px;
  font-weight: 500;
}

/*  */
@keyframes stretch {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.9);
  }
}

.animation-zoom {
  animation-name: stretch;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-play-state: running;
}

.custom-hover-scale {
  transition: 0.3s;
}

.custom-hover-scale:hover {
  transform: scale(1.04);
}

html {
  scroll-behavior: smooth; /* smooth kalau klik dari halaman ini sendiri */
}

.breadcrumb-item + .breadcrumb-item::before {
  font-family: Unicons;
  font-weight: 400;
  display: flex;
  align-items: center;
  padding-right: 0.5rem;
  color: var(--bs-gray-300);
  content: "\e931";
  margin-top: -3px;
  font-size: 0.9rem;
}

/* Article */
.article .item .card-body {
}

.article .item:hover .card-body {
  box-shadow: 0 2px 15px rgb(0 0 0 / 40%) !important;
}

/* Paket */
.paket-penerbit .pricing-table {
  background: #fff;
  box-shadow: 0px 1px 10px -6px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  border-radius: 4px;
  transition: 0.3s;
}

.paket-penerbit .pricing-table:hover{
    /*box-shadow: 0px 1px 10px -6px rgba(0, 0, 0, 0.15);*/
    box-shadow: 0px 1px 10px -6px rgb(0 0 0 / 98%);
    background: #f6d60012 !important;
}

.paket-penerbit .pricing-table .pricing-label {
  border-radius: 2px;
  padding: 0.25rem 0.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
}

.paket-penerbit .pricing-table h2 {
  color: #000000;
  font-size: 24px;
  font-weight: 600;
}

.paket-penerbit .pricing-table h5 {
  color: #b3b3b3;
  font-size: 14px;
  font-weight: 400;
}

.paket-penerbit .pricing-table .pricing-features {
  margin-top: 2rem;
}

.paket-penerbit .pricing-table .pricing-features .feature {
  font-size: 14px;
  margin: 0.5rem 0;
  color: #b3b3b3;
}

.paket-penerbit .pricing-table .pricing-features .feature span {
  display: inline-block;
  float: right;
  color: #3b3b3b;
  font-weight: 500;
}

.paket-penerbit .pricing-table .price-tag {
  margin-top: 2rem;
  text-align: center;
  font-weight: 500;
}

.paket-penerbit .pricing-table .price-tag .symbol {
  font-size: 24px;
}

.paket-penerbit .pricing-table .price-tag .amount {
  letter-spacing: -2px;
  /* font-size: 64px; */
}

.paket-penerbit .pricing-table .price-tag .after {
  color: #3b3b3b;
  font-weight: 500;
}

.paket-penerbit .pricing-table .price-button {
  display: block;
  color: #fff;
  margin-top: 2rem;
  padding: 0.75rem;
  border-radius: 2px;
  text-align: center;
  font-weight: 500;
  transition: 0.3s;
}

.paket-penerbit .pricing-table .price-button:hover {
  text-decoration: none;
}

.paket-penerbit .pricing-label {
  background: var(--bs-primary);
  color: #000;
}

.paket-penerbit .price-tag {
  color: #000;
}

.paket-penerbit .price-button {
  background: #272727;
}

.paket-penerbit .pricing-table:hover .price-button {
    background: #9c8800;
    color: #ffffff;
}


.addon-paket table tbody tr td:nth-child(2){
    white-space:nowrap;
}

.deskripsi hr {
  margin: 10px 0;
}

.cta-card img{
     transition: all 0.3s ease;
}

.cta-card:hover img{
    transform: scale(1.08);
     transition: all 0.3s ease;
}

hr {
  margin: 10px 0;
}

/* Layanan */
.layanan .item .card {
    transition: all 0.3s ease;
}

.layanan .item:hover .card {
    box-shadow: 0px 1px 10px -3px rgb(0 0 0) !important;
    background-color: #f6f5e7;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.layanan .item:hover .card .card-body .btn {
    
    background-color: var(--bs-dark);
    color: white;
    transition: all 0.3s ease;
}

/* Katalog */
.katalog .item .card{
    transition: all 0.3s ease;
}

.katalog .item:hover .card{
    box-shadow: 0px 1px 10px -3px rgb(0 0 0) !important;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}