/*!
 * JMC IT Consultant (https://www.jmc.co.id/)
 * Copyright 2009-2023 JMC IT Consultant
 * Developed by Anggin Megantara(Web Designer At JMC IT Consultant)
 */


/*-------------------------------------------------------------
# FONT
-------------------------------------------------------------*/
/* @import url('https://fonts.googleapis.com/css2?family=Dai+Banna+SIL:wght@300;400;500;600;700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root{
  --primary-font: "Montserrat", serif;
  --secondary-font: "Nunito", serif;

  --theme-color: #007f83;

  --primary-color: rgba(0, 57, 44, 1);
  --primary-color-light: rgba(33, 160, 148, 1);
  --dark-text-color: rgba(65, 65, 65, 1);
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--primary-font) !important;
  overflow-x: hidden;
}


a {
  color: #F2870BD9;
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #F2870BD9;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
  color: #21A094;
}

.main-page {
/*  margin-top: 70px;*/
  padding: 0 0 5px 0px;
  margin-bottom: 20px;
}

.blog-page {
/*  margin-top: 70px;*/
  padding: 0 50px;
}

.blog-header {
/*  margin-top: 70px;*/
  padding-bottom: 20px;
}

.table th {
    text-align: center;
    vertical-align: middle;
}

.title {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 40px;
  color: #21A094;
}

.text-orange {
  font-weight: bold;
  font-size: 24px;
  color: #FF8E26;
}

.text-blue {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #21A094;
}

.text-dark-color{
  font-variant: var(--dark-text-color);
}

.btn-primary {
  background-color: #FF8E26;
  border: none;
  border-radius: 50px;
  padding: 10px 25px;
}

.btn-outline-primary{
  color: #F2870BD9;
  border-color: #F2870BD9;
}

.btn-primary:hover {
  background-color: #FF8E26;
}
.help-block {
  color: #a94442;
}

/* Prelaoder */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../images/preloader.svg") no-repeat center center;
}

/* Css Yang Hilang */
.mt-n5 {
  margin-top: -3rem!important;
}
.text-justify {
  text-align: justify;
}
@media (min-width: 992px) {
  .w-md-50{
    width: 50%!important;
  }
}


/* Assets Tambahan */
.bg-dot-primary {
    background-image: radial-gradient(#F3B55A 2px, transparent 2.5px);
    background-size: 0.75rem 0.75rem;
    opacity: 0.2;
    z-index: -1;
}
.active>.page-link, .page-link.active {
  background-color: #E38904;
  border-color: #E38904;
}

.secondary-font{
  font-family: var(--secondary-font) !important;
}

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

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

.fw-600{
  font-weight: 600;
}

.section-title{
  font-size: 2.5rem;
  font-weight: 700;
}

.section-desc{
  font-size: 1rem;
  font-weight: 600;
  color: rgba(0, 57, 44, 1);
}

/* Section Decoration */
/* Decoration Line */
.-section-decoration {
  margin: 8px 0;
  width: 190px;
  height: 10px;
}

.section-decoration .line-container {
  display: flex;
  gap: 8px;
}

.section-decoration.section-decoration-white .line-container .line {
  background-color: rgb(255, 255, 255);
}

.section-decoration .line-container .line {
  border-radius: 5px;
  height: 4px;
  background-color: rgba(255, 144, 0, 1);
}

.section-decoration .line-container .line:nth-child(1) {
  width: 63px;
}

.section-decoration .line-container .line:nth-child(2) {
  width: 15px;
}

.section-decoration .line-container .line:nth-child(3) {
  width: 5px;
}

.fancybox__container{
  z-index: 9999;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #F2870BD9;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #dc3545;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Topbar
--------------------------------*/
#topbar {
    background: #05BFDB;
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    color: #fff;
    padding: 0;
}
/* Sections Header
--------------------------------*/
.section-header {
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}

/*.section-header::before {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: #f82249;
  bottom: 0;
  left: calc(50% - 25px);
}*/

.section-header h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #9195a2;
}

.section-with-bg {
  background-color: #f6f7fd;
}

.accordion-button:not(.collapsed){
  background-color: transparent;
}

.carousel-control-next-icon{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='000000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-control-prev-icon{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='000000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  /* height: 72px; */
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 99999;
  /*position: absolute;
  top: 0;
  left: 0;
  right: 0;*/
}

#header.header-scrolled,
#header.header-inner {
  background-color: #fff!important;
  /* height: 70px; */
  /* position: fixed;
  left: 0;
  top: 0;
  right: 0; */
  z-index: 997;
}
.header-scrolled .navbar>ul>li>a {
    line-height: 70px;
}

#header h4 {
  font-size: 28px;
  margin: 0;
  font-family: "Calibri", sans-serif !important;
  font-weight: 700;
  color: #21A094 !important;
  line-height: 39.06px;
}

#header #logo h4 span {
  color: #007f83 !important;
}

#header #logo h4 a,
#header #logo h4 a:hover {
  color: #fff;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 1rem!important;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: bold;
  gap: 10px;
}

.header-logo{
  height: 42px;
}

header .nav-link{
  font-family: var(--secondary-font);
}

header .nav-item .nav-link.active, header .nav-item .nav-link:hover{
  color: var(--primary-color-light);
  font-weight: 600;
}

@media (max-width: 992px) {
  #header #logo img {
    max-height: 30px;
  }
}


/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/
.login-btn {
    color: #fff;
    background: #007f83;
    padding: 7px 32px;
    margin: 0 15px;
/*    border: 2px solid var(--bs-btn-border-color);*/
    transition: all ease-in-out 0.3s;
    font-size: 14px;
    font-weight: 500;
/*    line-height: 1;*/
    white-space: nowrap;
}

.login-btn:hover {
  background: #007f83;
  color: #fff;
}

.login-btn:focus {
  color: #fff;
}

#menubar .active {
  color: #000 !important;
  font-weight: bold !important;
}
#menubar .btn-lang {
  border: none;
  background: transparent;
  color: #414141 !important;
  font-size: 16px;
  padding: 0 5px;
}

@media (max-width: 992px) {
  /*.login-btn {
    margin: 0 15px 0 0;
  }*/
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 0;
}

.header-scrolled .navbar>ul>li>a:focus {
  line-height: 70px;
}

.navbar>ul>li>a {
    line-height: 86px;
    padding: 0 10px;
    font-size: .9rem!important;
    font-weight: 600;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0px;
  left: 0;
  background-color: #f82249;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a.nav-link:hover:before,
.navbar li:hover>a.nav-link:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 12px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.dropstart .dropdown-menu[data-bs-popper]{
  visibility: visible;
  opacity: 1;
  top: 0!important;
}

ul#submenu {
    top: 100%;
    left: -100%;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #060c22;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--primary-color-light);
}

@media (min-width: 1024px) {
  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}
@media (max-width: 768px) {
  .navbar-mobile .dropdown ul {
    margin: 0!important;
  }
  #submenu.show {
    display: block!important;
    margin: 0;
  }
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}


@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #060c22;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #f82249;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #f82249;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  /* height: 70vh; */
  border-radius: 15px;
}

@media (max-height: 500px) {
  #hero {
    height: 150vh;
  }
}

/*#hero .container {
  text-align: center;
}*/

#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 20px;
    line-height: 1.2;
  }
}

@media (min-width: 1024px) {
  /*#hero p {
    width: 60%;
  }*/
}

@media (max-width: 768px) {
  #hero p {
    font-size: 28px;
    line-height: 1.2;
  }
}

#hero .btn-get-started {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #3ec1d5;
}

#hero .btn-get-started:hover {
  background: #fff;
  color: #3ec1d5;
}

#hero .tabular{
  background: #ffffff;
  background-size:100% 100%;
  margin-top: 100px; 
  padding-bottom: 20px;
  width: 100%; 
/*  height: 500px; */
  position: relative;
  font-size: 12px;
}

.modal-map .title{
  color: #060c22;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 6px;
}

.modal-map .info-area .icon{
  font-size: 13px;
  color: white;
  background-color: var(--primary-color-light);
  padding: 3px 4px;
  border-radius: 50px;
  margin-right: 5px;
}

.modal-map .info-area .detail{
  font-size: 0.95rem;
}

.modal-map .modal-description{
  font-size: 0.95rem !important;
  color: var(--dark-text-color)!important;
  text-align: justify;
}

.modal-map .modal-body .image-area img, .modal-map .modal-body .image-area .thumbnail{
  width: 50%;
  max-height: 200px;
  border: 2px solid white;
}

.modal-map .modal-body .image-area img:last-of-type, .modal-map .modal-body .image-area .thumbnail:last-of-type{
  width: 100%;
}

.modal-map .btn{
  padding: 6px 12px;
  border-radius: 4px
}

@media screen and (max-width: 425px) {
  .modal-map .modal-description, .modal-map .info-area .detail{
    font-size: 0.9rem !important;
  }
}
/*--------------------------------------------------------------
# Section Insight
--------------------------------------------------------------*/

#statistik {
  background: url(../images/bg-insights.svg) top center no-repeat;
}

#statistik .btn-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
  height: 140px;
  background: #FFFFFF;
  border: 0.5px solid #D0E8D8;
}
#statistik .active {
  background: #F1FFF5 !important;
  border: 0.5px solid #D0E8D8;
}

#statistik .menu_insight button img{
  height: 40px;
}

#statistik .btn-menu:nth-child(1) {
  border-top-left-radius: 20px;
}

#statistik .btn-menu:nth-child(2) {
  border-top-right-radius: 20px;
}

#statistik .btn-menu:nth-child(5) {
  border-bottom-left-radius: 20px;
}

#statistik .btn-menu:nth-child(6) {
  border-bottom-right-radius: 20px;
}

/*--------------------------------------------------------------
# Section Story
--------------------------------------------------------------*/

#story .story-grid {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: .5rem;
}

#story .story-grid img {
  flex: 1;
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: 50% 50%;
}
#story .story-grid .detail-story {
  position: absolute;
  bottom: 8px;
  left: 16px;
  color: #fff;
  text-shadow: 0px 1px #c2c2c2;
  font-family: 'Montserrat', sans-serif;
  border-left: 2px solid;
  padding-left: 5px;
}
#story .story-grid .detail-story p {
  margin: 0;
  padding: 5px 0;
}
#story .detail-story span {
  font-size: 12px;
}
#story .story-img{
  background: linear-gradient(to bottom, rgba(0,100,117,0.1) 0%,rgba(0,100,117,0.55) 100%); 
  border: 4px solid white;
}
#story .story-img img{
  position:relative;
  z-index:-1;
  display:block;
}

.story-img:nth-of-type(1), .story-img:nth-of-type(4), .story-img:nth-of-type(5) {
  width: 60%;
}

.story-img:nth-of-type(2), .story-img:nth-of-type(3), .story-img:nth-of-type(6) {
  width: 40%;
}

#story-blog {
  background: url(../images/bg-story.svg) top center no-repeat;
}
#story-blog .detail-img {
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}
#story-blog .detail-img img {
  width: 100%;
  height: 500px;
  object-fit: cover; 
}
#story-blog .detail-story p {
  margin: 0;
}

.detail-story{
  padding-left: 8px;
  border-left: 2px solid var(--dark-text-color);
}

.detail-story-title{
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-text-color);
  margin-bottom: 4px;
}

.detail-category-separator{
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(217, 217, 217, 1);
}

.detail-story-map{
  width: 100%;
  height: 300px;
  border:0;
  border-radius: 12px;
  position: sticky;
  top: 100px;
}

/* Timeline */

.sessions li {
  list-style: none;
  padding: 0;
}

.sessions {
  margin-top: 12px;
  border-radius: 12px;
  position: relative;
}

.sessions li {
  padding-bottom: 0.95rem;
  border-left: 1px solid var(--primary-color-light);
  position: relative;
  padding-left: 20px;
  margin-left: 10px;
}

.sessions li:last-child {
  border: 0px;
  padding-bottom: 0;
}

.sessions li:before {
  content: "";
  width: 15px;
  height: 15px;
  background: white;
  border: 1px solid var(--primary-color);
  box-shadow: 3px 3px 0px var(--primary-color-light);
  box-shadow: 3px 3px 0px var(--primary-color-light);
  border-radius: 50%;
  position: absolute;
  left: -10px;
  top: 0px;
}

.sessions .time {
  color: var(--dark-text-color);
  font-weight: 600;
}

/*--------------------------------------------------------------
# Section Report
--------------------------------------------------------------*/

#report {
  padding: 60px 0;
  background: url(../images/bg-report.png) center center no-repeat;
  color: #fff;
}

#report .report-circle{
    width: 522px;
    height: 522px;
    border-radius: 50%;
    background: linear-gradient(#FEB168D9, #F2870BD9);
/*    background-color: #F2870BD9;*/
    box-shadow: 1px 1px 1px black;
    color: white;
    padding: 0 50px;
    margin-left: auto;
}

#report .report-circle > div{
  margin-top: 20px;
}

.report-btn {
    padding: 15px 50px;
    background: #fff;
    border: 0;
    color: #F2870BD9;
    font-weight: 500;
}
#report-blog {
    background: url(../images/bg-reportissue.svg) center center no-repeat;
}

#report-blog .form-group {
  padding-bottom: 10px;
}

.report-circle-mobile{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 522px;
  height: 522px;
  border-radius: 50%;
  background: linear-gradient(#FEB168D9, #F2870BD9);
}

/*--------------------------------------------------------------
# Section Partner
--------------------------------------------------------------*/

#collab_partner .partner-slider {
  padding: 30px 0;
}

#collab_partner .partner {
  background: #fff;
  margin-bottom: 30px;
}

#collab_partner .partner:hover .partner-img img {
  transform: scale(1.1);
}

#collab_partner .partner-img {
  overflow: hidden;
  margin-bottom: 15px;
}

#collab_partner .partner-img img {
  transition: 0.3s ease-in-out;
}


#collab_partner a {
  color: #152b79;
}

#collab_partner a:hover {
  color: #f82249;
}

#collab_partner p {
  padding: 0 20px;
  margin-bottom: 20px;
  color: #060c22;
  font-style: italic;
  font-size: 15px;
}

/*--------------------------------------------------------------
# F.A.Q Section
--------------------------------------------------------------*/

#faq {
  padding: 60px 0;
  background: linear-gradient(0deg, rgba(33, 160, 148, 0.9), rgba(33, 160, 148, 0.9)), url(../images/bg-faq.jpg) center center no-repeat;
}

#faq .faq {
  height: 488px; 
  width: 442px;
  margin: 0 18px;
}

#faq .faq img{
  height: 100%;
  width: 80%;
  object-fit: cover
}

#faq .section-img{
  height: 500px;
  width: 90%;
  object-fit: cover
}

#faq .question {
  background: #fff;
  margin-bottom: 20px;
}

#faq .faq-list {
  padding: 0;
  list-style: none;
}

#faq .faq-list li {
  border-bottom: 1px solid #e9eaed;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

#faq .faq-list .question {
  display: block;
  position: relative;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #e0072f;
  transition: 0.3s;
}

#faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

#faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

#faq .faq-list .icon-show {
  display: none;
}

#faq .faq-list .collapsed {
  color: black;
}

#faq .faq-list .collapsed:hover {
  color: #f82249;
}

#faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

#faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}
#faq-blog {
  background: url(../images/bg-faq.svg) top left no-repeat;
}

/*--------------------------------------------------------------
# Document Section
--------------------------------------------------------------*/

#document {
  padding: 100px 0;
  background: url(../images/bg-document.svg) top left no-repeat;
}
#document-blog {
  background: url(../images/bg-document.svg) top left no-repeat;
}

#document .section-img{
  height: 500px;
  position: relative;
}

#document .image-container .decoration{
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 20px;
}

#document .image-container .decoration.decoration-1{
  background-color: var(--primary-color-light);
  top: -35px;
  right: 30px;
}

#document .image-container .decoration.decoration-2{
  background-color: rgba(0, 127, 131, 1);
  bottom: -35px;
  left: 45px;
}

.panel-group {
  width: 84%;
  margin-bottom: 20px;
}
.panel-group .panel {
  border-radius: 0;
  padding-bottom: 10px;
}
.panel-group .panel + .panel {
  margin-top: 0;
}
.panel-heading {
  border: 1px solid rgba(207, 207, 207, 1);
  border-radius: 4px;
  padding: 0;
}
.panel-title {
  margin: 0;
}
.panel-title a {
  display: block;
  color: #596C80;
  padding: 10px 15px;
  position: relative;
  font-size: 16px;
  font-weight: bold;
}
.panel-body {
  background: #fafafa;
  color: #333;
  padding: 10px 20px;
}
.panel:last-child .panel-body {
  border-radius: 0 0 4px 4px;
}
.panel:last-child .panel-heading {
  border-radius: 0 0 4px 4px;
  transition: border-radius 0.3s linear 0.2s;
}
.panel:last-child .panel-heading.active {
  border-radius: 0;
  transition: border-radius linear 0s;
}
/* #bs-collapse icon scale option */

.panel-heading a:before {
  content: '\f282';
  position: absolute;
  font-family: "bootstrap-icons";
  right: 5px;
  top: 5px;
  font-size: 24px;
  transition: all 0.5s;
  transform: scale(1);
}
.panel-heading.active a:before {
  content: '\f286';
  transition: all 0.5s;
  transform: scale(0);
}
#bs-collapse .panel-heading a:after {
  content: '\f282';
  font-size: 24px;
  position: absolute;
  font-family: "bootstrap-icons";
  right: 5px;
  top: 5px;
  transform: scale(0);
  transition: all 0.5s;
}
#bs-collapse .panel-heading.active a:after {
  content: '\f282';
  transform: scale(1);
  transition: all 0.5s;
}
/* #accordion rotate icon option */

#accordion .panel-heading a:before {
  content: '\f282';
  font-size: 20px;
  position: absolute;
  font-family: "bootstrap-icons";
  right: 10px;
  top: 7px;
  transform: rotate(180deg);
  transition: all 0.5s;
}
#accordion .panel-heading.active a:before {
  transform: rotate(0deg);
  transition: all 0.5s;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Collaborative Partner Section
--------------------------------------------------------------*/

.partner-image{
  object-fit: contain;
  width: 120px;
  height: 80px;
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/

.pagination .page-item a {
  border-radius: 0.35rem;
  color: #020202;
}

.pagination .active a {
  background-color: #007F83; 
  border-color: #dee2e6;
  color: #fff;
}

.pagination li.page-item {
  margin:0 10px 0 0;   
}

.wajib-diisi {
  font-size:6px;
  color:red;
  vertical-align: middle !important;
}

.pull-right {
  float: right !important;
  margin-left: auto;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #007F83 repeat-x center bottom;
  background-size:cover;
  padding: 0 0 5px 0;
/*  color: #eee;*/
  font-size: 14px;
/*  height: 400px;*/
}

#footer .footer-top {
  background: #007F83 url(../images/bg-footer.png) repeat-x center bottom;
  background-size: cover;
}

#footer .footer-top #footer .footer-top .footer-contact .footer-links {
  margin-top: 1rem;
  margin-right: -10px;
  padding-left: 0px !important;
}

#footer .footer-top .footer-info {
  margin-right: -15px;
  color: #000;
  width: 350px;
}

.footer-logo{
  height: 65px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-support-img{
  height: 50px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

#footer .footer-top .footer-info h3 {
  font-size: 26px;
/*  margin: 0 0 20px 0;*/
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: #fff;
}

#footer .footer-top .footer-info img {
  height: 40px;
  margin-bottom: 10px;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  display: inline-block;
  background: #fff;
  color: #eee;
  line-height: 1;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#footer .footer-top .social-links a i {
  line-height: 0;
  font-size: 16px;
}

#footer .footer-top .social-links a:hover {
  background: #f82249;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #000;
/*  text-transform: uppercase;*/
  position: relative;
/*  padding-bottom: 12px;*/
  /*border-bottom: 2px solid #f82249;*/
}

#footer .footer-top .footer-links {
  width: 200px;
}
#footer .footer-top .footer-links a {
  padding: 0 15px 0 0;
  margin: 0;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 5px;
  color: #fff;
  font-size: 15px;
}

#footer .footer-top .footer-links ul li {
  /*border-bottom: 1px solid #262c44;*/
  padding: 5px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
  color: #f82249;
}

#footer .footer-top .footer-contact {
  width: 270px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-contact span {
  color: #007F83;
  font-size: 18px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
  width: 250px;
}

#footer .footer-top .footer-newsletter input[type=email] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type=submit] {
  background: #f82249;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type=submit]:hover {
  background: #e0072f;
}
#footer .footer-top .footer-newsletter .btn-report {
    color: #fff;
    background: #F2870BD9;
    padding: 7px 32px;
    margin: 0 0 0 15px;
    border: 0px solid var(--bs-btn-border-color);
    border-radius: 50px !important;
    transition: all ease-in-out 0.3s;
    font-weight: 450;
    line-height: 2;
    white-space: nowrap;
}

#footer .copyright {
  color: #fefefe;
}

#footer .copyright a{
  color: #fefefe;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}
.footer-icon{
    height: 28px;
    width: 45px;
/*    overflow: hidden;*/
}
.footer-icon img{
    width: auto; 
    height: 100%; 
    object-fit: cover;
}

.leaflet-control-attribution{
  display: none;
}

.highcharts-exporting-group{
/*  display: none;*/
}