/*---------------------------------------
 *                                      *
 *       Add Your Custom CSS Here       *
 *                                      *
 ---------------------------------------*/

:root {
  --primary: #061fd6;
  --accent: #ffc944;
  --dark: #030c49;
  --text-foreground-light: #f1f5f9;
}

html {
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
}

body {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--dark);
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

/* navbar */
#topnav {
  background-color: transparent;
  padding-top: 12px;
  padding-bottom: 12px;
}

#topnav .navigation-menu.nav-light>li>a {
  color: var(--dark);
}

#topnav .navigation-menu.nav-light>li:hover>a {
  color: var(--primary);
}

#topnav.nav-sticky {
  padding-top: 4px;
  padding-bottom: 4px;
}

#topnav.nav-sticky {
  background-color: rgba(253, 254, 255, 0.9);
  backdrop-filter: blur(16px);
}

#topnav.nav-sticky .navigation-menu.nav-light>li>a {
  color: var(--dark);
}


#topnav .navigation-menu {
  align-items: center;
}

#topnav .navbar-toggle {
  background-color: var(--primary);
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
}

#topnav .navbar-toggle:hover {
  background-color: var(--primary);
}

#topnav .navbar-toggle .lines {
  padding: 0;
  margin: 0;
}

/* hero */
.hero {
  background-image: url(../images/bg/silhouette.png), url(../images/bg/silhouette.png), url(../images/bg/silhouette.png);
  background-position: 0% 110%, 10% 110%, 20% 110%;
  background-repeat: no-repeat;
}

.hero-video {
  width: 100dvw;
  height: 600px;
  object-fit: cover;
  margin-top: -100px;
}

.hero-title {
  font-size: 3rem !important;
}

/* btn */
.btn {
  border-radius: 10px;
}

.btn-primary {
  border-color: var(--primary) !important;
  background-color: #061fd6 !important;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--accent) !important;
  opacity: 0.9;
}

.btn-login {
  padding: 12px 16px !important;
  height: fit-content;
  color: white !important;
}

.btn-outline-primary {
  border: 2px solid var(--primary) !important;
  color: var(--primary) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}

.btn-outline-accent {
  background-color: transparent;
  border: 2px solid var(--accent) !important;
  color: var(--accent) !important;
}

.btn-outline-accent:hover,
.btn-outline-accent:focus,
.btn-outline-accent:active {
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
}

/* daya saing */
.daya-saing-section {
  background: url(../images/batik-pattern.png);
  background-repeat: repeat-x;
  background-position: 0 100%;
}

.daya-saing__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;

  .daya-saing__title {
    display: flex;
    gap: 16px;
    align-items: center;
  }

  .daya-saing__see-more {
    color: #ffaf33;
    display: flex;
    align-items: center;
    gap: 8px;
  }
}

/* data-rekapitulasi */
.data-rekapitulasi {
  overflow: visible !important;

  .swiper-slide {
    height: auto;
  }


  .data-rekapitulasi__item {
    height: 100%;
    border: 2px solid var(--dark);
    border-radius: 12px;
    padding: 1.5rem;

    .rekapitulasi__header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;

      .header__title {
        font-size: 1.5rem;
        font-weight: 500;
      }
    }

    .rekapitulasi__see-more {
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    &:hover {
      box-shadow: 0 0 0 3px var(--accent);
    }
  }

  .swiper-scrollbar-drag {
    background: var(--accent)
  }

}

.data-rekapitulasi-navigation {
  display: flex;
  justify-content: space-between;

  .data-rekapitulasi-navigation__item {
    height: 48px;
    width: 48px;
    padding: 0;
  }
}

/* daftar-invasi */
.daftar-inovasi {
  position: relative;
  z-index: 2;
  margin-top: -100px;

  .daftar-inovasi-navigation {
    display: flex;
    justify-content: end;
    gap: 0.5rem;

    .daftar-inovasi-navigation__item {
      height: 40px;
      width: 40px;
      padding: 0;
      display: grid;
      place-items: center;
    }
  }

  .inovasi__item {
    background-color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--dark);

    a {
      color: var(--primary);
    }
  }
}

/* pricing box */
.pricing-box {
  border: 2px solid var(--dark);
  border-radius: 10px;
}

/* select2 */
.select2-container .select2-selection--single {
  height: 48px !important;
  border: 2px solid var(--dark);
  border-radius: 10px;
  padding-left: 8px;
  padding-right: 8px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-weight: 600;
}

.select2-dropdown {
  border: 2px solid var(--dark);
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  box-shadow: 0 0 0 3px var(--accent)
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--primary);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 48px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 48px !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 2px solid var(--dark);
  border-radius: 8px;
  padding: 10px 12px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  outline: none;
}

/* bg */
.bg-dark {
  background-color: var(--dark) !important;
}

.footer {
  background-color: var(--dark);
  padding-top: 4rem;
}

/* utility */
.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-white {
  color: white;
}

.text-light {
  color: var(--text-foreground-light);
}

.opacity-0 {
  opacity: 0;
}


/*  */
.text-detail-data {
  color: #03417a !important;
  padding: 10px;
  margin-bottom: 0;
}

.btn-detail-peta {
  background-color: #FFC602 !important;
  border-color: #FFC602 !important;
  box-shadow: 0 3px 5px 0 rgb(212 184 47 / 45%);
}

.btn-detail-peta:hover {
  background-color: #e6b200 !important;
  border-color: #e6b200 !important;
}

.map-lokasi {
  position: sticky !important;
  width: 100%;
  height: 300px;
  border-radius: 10px;
}

/* Padding Bottom */

.pb-70 {
  padding-bottom: 70px;
}

/* Padding Top */

.pt-10 {
  padding-top: 10px
}

.pt-50 {
  padding-top: 50px;
}

/* Margin Top */
.mt-2 {
  margin-top: 0.5rem !important;
}

/* Text */
.text-primary {
  color: #5993fa;
  font-weight: 700;
}

.text-tahun {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.text-breadcrumb-head {
  color: #2f55d4 !important;
  font-weight: 600;
  padding-top: 15px;
  padding-left: 10px;
}

.text-breadcrumb {
  color: #8492a6 !important;
  padding: 10px;
}

/* List Krenova */


.card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e8eaf3;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  margin-bottom: 20px;
  transition: transform 0.2s;
  height: 380px;

  &:hover {
    transform: translateY(-5px);
  }

  img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }

  .card-body {
    padding: 0;
    margin-top: 16px;
    height: 100%;
  }

  .card-footer {
    padding: 10px;
    text-align: center;
    border-top: 1px solid #eee;
    background: #fafafa;
  }
}


section.list-krenova {
  .filter {
    .form-select {
      background-color: white;
      border: 1px #0d7de4 solid;
      border-radius: 14px;
      padding: 16px;
    }
  }
}

/* end List Krenova */


/* Layout Data Inovasi */

.card-layout {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

/* btn */
.btn-data {
  display: inline-block;
  color: #000;
  padding: 0.5em 1.5em;
  background-color: #ffc600;
  border-radius: 10px;
  text-align: center;
}

.hbtn.hbtn-lihatdata {
  /* background-color: #ffc600; */
  background-color: #1961a3;
  color: #fff;
}

.hbtn.hbtn-lihatdata:hover,
.hbtn.hbtn-lihatdata:focus {
  text-decoration: none;
  /* background-color: #e6b200; */
  background-color: #114777;
}

/* NAVBAR DROPDOWN */

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  background: transparent;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 235px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 16px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
  box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
}

/* Footer Logo */

.logo-footer {
  width: 190px;
  margin-left: -17px;
  margin-bottom: 20px;
}

/* BG Page */

.bgpage-img {
  /* background-color: rgba(34, 34, 34, 0.5); */
  background: url("../images/post-photo2.jpg");
}

.bg-page {
  /* background: linear-gradient(45deg, #5993fa, #2fa841); */
  padding-top: 145px;
  padding-bottom: 90px;
  background: rgba(34, 34, 34, 0.5);
}

.container-fluid1 {
  padding-right: 0px;
  padding-left: 0px;
  margin-right: auto;
  margin-left: auto;
}


/* Charts */

#graph-home .chart {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 75% 25%;
  gap: 1.5em;
  padding: 1.5em;
  border-radius: 35px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0px 0px 30px -5px rgba(0, 0, 0, 0.1);
  background: linear-gradient(178deg, #0d7de4 0%, rgb(95 163 229 / 41%) 35.37%, rgb(81 152 161 / 40%) 59.4%, rgb(0 76 255 / 20%) 100%);
}

#graph-home .chart i {
  position: absolute;
  top: 0;
  right: 0;
  padding: .75em;
  font-size: 25px;
  background-color: #EDBE14;
  border-radius: 0px 35px 35px 35px;
}

#graph-home .chart #chart-home {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 15px;
  background-color: #fff;
}

#graph-home .chart .chart-detail {
  margin: auto 0;
  padding-right: 1.5em;
}

#graph-home .chart .chart-detail p {
  position: relative;
  font-size: 15px;
}

#graph-home .chart .chart-detail p::before {
  content: '';
  top: -10px;
  left: -10px;
  width: 77px;
  height: 77px;
  border-radius: 3px;
  position: absolute;
  /* background: rgba(252, 209, 52, 0.2); */
}

#graph-home .chart .chart-detail .title {
  max-width: 180px;
  font-weight: 700;
}

/* video */
#header-holder .video-bg {
  position: absolute;
  max-height: fit-content;
  width: -webkit-fill-available;
  /* height: auto; */
  width: 100%;
  bottom: 5px;
}

#header-holder .overlay-dark {
  /* background-color: #0000007c; */
  /* background: linear-gradient(178deg, #b16d01c4 0%, rgb(229 185 95 / 60%) 35.37%, rgb(223 216 202 / 65%) 59.4%, rgb(255 198 0 / 9%) 100%); */
  /* background: linear-gradient(178deg, #0d7de4 0%, rgb(95 163 229 / 60%) 35.37%, rgb(81 152 161 / 71%) 59.4%, rgb(0 76 255 / 20%) 100%); */
  background: linear-gradient(178deg, #0d7de4 0%, rgb(95 163 229 / 41%) 35.37%, rgb(81 152 161 / 40%) 59.4%, rgb(0 76 255 / 20%) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* space content 1 */
.pt-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* popup */

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: block;
  /* display: none; */
  width: 100%;
  /* height: 100%; */
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  /* -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px); */
  -webkit-transform: translate(0, 0px);
  transform: translate(0, 0px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}

.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: -ms-flexbox;
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-footer,
.modal-dialog-scrollable .modal-header {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  overflow-y: auto;
  max-height: 75vh;
}

.w-layer-base {
  /* background: #3c670036; */
  background: #7366ff14;
  backdrop-filter: blur(20px);
  padding: 10px;
}

.w-layer-1 {
  background: white;
  border-radius: 3px;
}

.modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer>* {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}

.close:hover {
  color: #000;
  text-decoration: none;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }

  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }

  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .daya-saing__list {
    grid-template-columns: 1fr 1fr;
  }

  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}






/* responsive */
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }

  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }

  .modal-sm {
    max-width: 300px;
  }
}

@media (max-width: 992px) {

  #topnav .navbar-toggle {
    display: flex;
    margin-top: 0.75rem;
  }

  #topnav {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  #navigation {
    top: 82px;
    background-color: rgba(253, 254, 255, 0.9);
    backdrop-filter: blur(16px);
  }


}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

@media (min-width: 768px) {
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgb(0 0 0 / 50%);
    box-shadow: 0 5px 15px rgb(0 0 0 / 50%);
  }
}

@media (min-width: 992px) {

  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }

  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
}

@media screen and (max-width: 480px) {
  #header-holder .video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .daftar-inovasi__swiper {
    overflow-x: hidden !important;
  }

  #graph-home .chart i {
    font-size: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  #header-holder .video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (min-width:768px) and (max-width:992px) {
  #graph-home .chart {
    grid-template-columns: 70% 30%;
  }
}

@media screen and (max-width: 767px) {
  .daftar-inovasi {
    width: 100%;
  }

  #graph-home .chart {
    grid: none;
  }

  #graph-home .chart #chart-home {
    min-height: 300px;
  }

  #graph-home .chart .chart-detail .title {
    max-width: 280px;
  }

}

@media (min-width: 768px) and (max-width: 992px) {
  #graph-home .chart {
    grid-template-columns: 70% 30%;
  }
}


/* @media (min-width: 1280px) and (max-width: 800px) {
  #header-holder .video-bg{
    width: 100%;
  }
} */