
.footer {
  background-image: url(../img/bg-footer.png);
  background-color: #252525;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 0; }
  .footer-copy__img {
    max-width: 200px;
    margin: 20px 0; }
  .footer-copy__p {
    color: #FFF;
    font-size: 14px;
    line-height: 24px; }
  .footer-menu {
    display: block;
    list-style-type: none; }
    .footer-menu__link {
      display: block;
      padding: 5px 0;
      color: #FFF;
      text-decoration: none; }
      .footer-menu__link:hover, .footer-menu__link:active {
        color: #cccccc;
        text-decoration: none; }
  .footer-block {
    color: #FFF;
    margin-bottom: 30px; }
    .footer-block__title {
      color: #f1cd39;
      font-size: 16px; }
    .footer-block__p {
      font-size: 14px;
      line-height: 24px; }
    .footer-block__visitor-number {
      color: #252525;
      background-color: #FFF;
      padding: 10px 5px;
      font-weight: bold;
      font-size: 20px; }
    .footer-block__link {
      color: #FFF;
      font-size: 22px;
      margin: 0 10px; }
      .footer-block__link:hover, .footer-block__link:active {
        color: #cccccc;
        text-decoration: none; }

/* Mixins */
.header-top {
  height: 50px;
  background: #000;
  color: #FFF;
  padding-top: 10px; }
  .header-top-time {
    float: left; }
    @media (max-width: 767px) {
      .header-top-time {
        float: none;
        text-align: center; } }
    .header-top-time__date {
      color: #f5d329;
      font-size: 18px; }
  .header-top__link {
    margin: 0 10px;
    color: #FFF;
    cursor: pointer; }
    .header-top__link:hover {
      color: #cccccc;
      text-decoration: none; }
  .header-top__search {
    border-radius: 5px;
    border: none;
    background: #666666;
    padding: 3px;
    color: #cccccc; }

.header-bottom {
  padding: 10px 0;
  background: #FFF; }
  .header-bottom-logo {
    float: right; }
    @media (max-width: 767px) {
      .header-bottom-logo {
        float: none;
        text-align: center; } }
    .header-bottom-logo__img {
      height: 75px; }
      @media (max-width: 767px) {
        .header-bottom-logo__img {
          margin: 0 auto; } }
  .header-bottom-call {
    float: right;
    margin-top: 10px; }
    .header-bottom-call__img {
      max-width: 50px;
      display: block;
      margin: 0 3px; }
    .header-bottom-call-text {
      margin-top: 10px;
      float: right; }
      .header-bottom-call-text__label {
        margin: 0;
        font-size: 12px;
        display: block; }
      .header-bottom-call-text__p {
        margin: 0;
        font-size: 16px;
        font-weight: bold; }
  .header-bottom img:not(.header-bottom-logo__img) {
    max-height: 75px;
    margin: 0 5px; }
    .header-bottom img:not(.header-bottom-logo__img).img-with-shadow {
      -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); }

/* Mixins */
body {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  background: #EEE; }

/* =====================
 * Utility
 * ===================== */
.row.is-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .row.is-flex > [class*='col-'] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
    @media (min-width: 992px) {
      .row.is-flex > [class*='col-'] {
        -webkit-flex: 1 1 15em;
        /* this */
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1; } }

@media only screen and (min-width: 768px) {
  .is-table-row {
    display: table; }
  .is-table-row [class*="col-"] {
    float: none;
    display: table-cell;
    vertical-align: top; } }

.no-margin {
  margin: 0; }

.no-padding {
  padding: 0; }

.mb-20 {
  margin-bottom: 20px; }

/* =====================
 * Navbar
 * ===================== */
.navbar {
  border: none;
  color: #252525;
  background: #f5f5f5;
  margin: 0; }
  .navbar-collapse {
    padding: 0; }
  .navbar .active > a {
    background-color: transparent !important;
    border-bottom: 4px solid #f5d329; }

@media (max-width: 767px) {
  .nav > li {
    padding: 0 20px; } }

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
  height: 50px; }

/* ================
 * Dropdown
 * ================ */
.dropdown-menu {
  padding: 0 10px; }
  .dropdown-menu li {
    border-bottom: 1px solid #c9c7c7; }
    .dropdown-menu li:last-child {
      border-bottom: none; }
    .dropdown-menu li:hover {
      padding-left: 20px; }
      .dropdown-menu li:hover a {
        position: relative;
        padding: 10px 0;
        color: #f5d329;
        background: none; }
        .dropdown-menu li:hover a:before {
          display: block;
          content: " ";
          width: 25px;
          height: 2px;
          background: #f5d329;
          position: absolute;
          left: -30px;
          top: 50%; }
    .dropdown-menu li a {
      padding: 10px 0;
      -webkit-transition: .2s;
      transition: .2s; }

/* ================
 * Slick
 * ================ */
.slick-prev {
  left: -25px; }

.slick-next {
  right: -25px; }

.slick-prev, .slick-next {
  font-size: 30px;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: #252525;
  border: none;
  outline: none;
  background: transparent; }

.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
  opacity: .25; }

.slick-dots {
  position: absolute;
  bottom: 10px;
  display: block;
  width: 100%;
  padding: 0 10px;
  margin: 0;
  list-style: none;
  text-align: right; }

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 3px;
  padding: 0;
  cursor: pointer; }

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 15px;
  height: 15px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #dad2ce; }

.slick-dots li.slick-active button {
  background: #e0bb25; }

/* ================
 * Banner popup
 * ================ */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); }
  .popup.active {
    display: block; }
  .popup-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 600px;
    width: 100%; }
    .popup-banner__close {
      color: #FFF;
      position: absolute;
      top: -30px;
      right: 0;
      cursor: pointer; }
      @media (max-width: 767px) {
        .popup-banner__close {
          right: 15px; } }
    .popup-banner__img {
      width: 100%;
      display: block;
      height: auto; }

/* ====================
 * Main section
 * ==================== */
.main {
  padding: 30px 0; }

.main-dark {
  background: #dedede; }

/* ====================
 * Slide banner
 * ==================== */
.head-banner {
  height: 500px; }
  @media (max-width: 767px) {
    .head-banner {
      height: auto; } }
  .head-banner .slick-list,
  .head-banner .slick-track {
    height: 100%; }
  .head-banner-slide {
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    position: relative; }
    .head-banner-slide__img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .head-banner-slide-title {
      position: absolute;
      bottom: 20px;
      left: 20px; }
      @media (max-width: 767px) {
        .head-banner-slide-title {
          font-size: 11px; } }
      .head-banner-slide-title__label {
        background: #252525;
        color: #FFF;
        padding: 5px 10px; }
      .head-banner-slide-title__h3 {
        background: rgba(0, 0, 0, 0.8);
        color: #FFF;
        padding: 10px;
        font-size: 20px;
        width: 80%;
        margin: 0;
        line-height: 28px; }
        @media (max-width: 767px) {
          .head-banner-slide-title__h3 {
            width: 100%;
            font-size: 14px; } }

.box.info-kerja {
  height: 475px;
  margin-bottom: 0; }

.info-kerja-item {
  height: 145px;
  padding: 20px;
  border-bottom: 1px solid #c9c7c7; }

.info-kerja__title {
  display: block;
  color: #2090a4;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px; }
  .info-kerja__title:hover {
    text-decoration: none;
    color: #0f454f; }

.info-kerja__p {
  font-size: 12px;
  margin: 3px 0;
  line-height: 16px;
  color: #252525;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.info-kerja__label {
  color: #c9c7c7;
  font-size: 10px;
  font-weight: 400; }

.head-runtext {
  background: #f5f5f5;
  padding: 10px 20px;
  border-left: 20px solid #f5d329;
  position: relative;
  overflow: hidden; }
  .head-runtext__p {
    position: relative;
    font-size: 12px;
    margin: 0;
    display: inline-block;
    white-space: nowrap;
    -webkit-animation: moveToLeft 30s linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation: moveToLeft 30s linear;
    animation: moveToLeft 30s linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite; }
  .head-runtext:after {
    content: " ";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: #000;
    background: -webkit-linear-gradient(0deg, rgba(245, 245, 245, 0), whitesmoke);
    background: linear-gradient(90deg, rgba(245, 245, 245, 0), whitesmoke);
    width: 150px; }

@-webkit-keyframes moveToLeft {
  0% {
    right: -100%; }
  100% {
    right: 100%; } }

@keyframes moveToLeft {
  0% {
    right: -100%; }
  100% {
    right: 100%; } }

/* ====================
 * Box
 * ==================== */
.box {
  border-top: 8px solid #585858;
  position: relative;
  margin: 25px 0;
  height: 100%;
  background: #FFF; }
  @media (max-width: 767px) {
    .box {
      margin: 25px 0 50px; } }
  .box.has-action {
    padding-bottom: 40px; }
  .box.height-auto {
    height: auto; }
  .box.height-250 {
    height: 250px; }
    @media (max-width: 767px) {
      .box.height-250 {
        height: auto; } }
  .box-tab-1 .box-tab-title {
    position: absolute;
    bottom: 100%;
    left: 0;
    background: #2090a4;
    color: #FFF;
    text-transform: uppercase;
    padding: 10px; }
    .box-tab-1 .box-tab-title__h3 {
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
      font-size: 13px;
      margin: 0; }
    .box-tab-1 .box-tab-title:after {
      content: " ";
      position: absolute;
      left: 100%;
      top: 0;
      height: 0;
      border-bottom: 34px solid #2090a4;
      border-right: 34px solid transparent; }
  .box-tab-2 .box-tab-title {
    position: absolute;
    bottom: 100%;
    width: 50%;
    background: #eeeeee;
    color: #b9b9b9;
    border: 1px solid #b9b9b9;
    text-transform: uppercase;
    padding: 10px;
    cursor: pointer; }
    .box-tab-2 .box-tab-title:first-child {
      left: 0; }
      .box-tab-2 .box-tab-title:first-child.active {
        background: #2090a4;
        color: #FFF; }
        .box-tab-2 .box-tab-title:first-child.active:after {
          content: " ";
          position: absolute;
          left: 100%;
          width: 10%;
          top: 0;
          height: 0;
          border-bottom: 34px solid #2090a4;
          border-right: 34px solid transparent;
          z-index: 100; }
    .box-tab-2 .box-tab-title:last-child {
      right: 0;
      text-align: right; }
      .box-tab-2 .box-tab-title:last-child.active {
        background: #2090a4;
        color: #FFF; }
        .box-tab-2 .box-tab-title:last-child.active:after {
          content: " ";
          position: absolute;
          right: 100%;
          width: 10%;
          top: 0;
          height: 0;
          border-bottom: 34px solid #2090a4;
          border-left: 34px solid transparent;
          z-index: 100; }
    .box-tab-2 .box-tab-title__h3 {
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
      font-size: 13px;
      margin: 0; }
  .box__img {
    width: 100%;
    max-height: 450px;
    object-fit: cover; }
  .box-body {
    padding: 20px; }
    .box-body-tab {
      display: none;
      -webkit-transition: .2s;
      transition: .2s; }
      .box-body-tab.active {
        display: block; }
    .box-body__label {
      color: #252525;
      font-size: 12px; }
    .box-body__h3 {
      margin: 5px 0 10px;
      font-size: 18px;
      font-weight: 600;
      line-height: 24px; }
    .box-body__p {
      height: 460px;
      overflow: hidden; }
      @media (max-width: 767px) {
        .box-body__p {
          height: auto; } }
    .box-body__input {
      margin-bottom: 10px; }
  .box-action {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; }
    .box-action-text {
      height: 40px;
      width: 100%;
      padding: 10px 40px 10px 20px;
      background: rgba(0, 0, 0, 0.8);
      color: #FFF;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden; }
      .box-action-text:hover {
        text-decoration: none;
        color: #cccccc; }
    .box-action-tab {
      display: none; }
      .box-action-tab.active {
        display: block; }
    .box-action__btn {
      position: absolute;
      right: 0;
      bottom: 0;
      height: 40px;
      width: 40px;
      padding: 10px;
      background: #252525;
      font-size: 16px;
      color: #FFF;
      text-decoration: none;
      text-align: center;
      cursor: pointer; }
      .box-action__btn:hover {
        text-decoration: none;
        color: #cccccc; }
      .box-action__btn--block {
        display: block;
        height: 40px;
        width: 100%;
        padding: 10px 40px 10px 20px;
        background: rgba(0, 0, 0, 0.8);
        color: #FFF;
        text-align: center; }
        .box-action__btn--block:hover {
          text-decoration: none;
          color: #cccccc; }

.news-item {
  height: 170px;
  width: 100%; }
  .news-item__img {
    width: 50%;
    height: 100%;
    object-fit: cover; }
  .news-item-text {
    width: 50%;
    height: 100%;
    padding: 10px;
    background: #FFF;
    overflow: hidden; }
    .news-item-text__label {
      color: #252525;
      font-size: 12px; }
    .news-item-text__p {
      color: #FFF;
      height: 120px;
      overflow: hidden;
      text-overflow: ellipsis; }
  .news-item.news-item-left .news-item__img {
    float: left; }
  .news-item.news-item-left .news-item-text {
    float: left; }
  .news-item.news-item-right .news-item__img {
    float: right; }
  .news-item.news-item-right .news-item-text {
    float: right; }

.announcement-item {
  background-color: #f5f5f5;
  padding: 15px;
  position: relative;
  height: 75px;
  margin-bottom: 5px; }
  .announcement-item:last-child {
    margin-bottom: 0; }
  .announcement-item__p {
    height: 100%;
    overflow: hidden;
    padding-right: 80px;
    line-height: 23px; }
  .announcement-item__date {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #2090a4;
    text-align: center;
    width: 50px;
    height: 45px;
    overflow: hidden; }

.g2g.box-body-tab.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.g2g-image {
  width: 40%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px; }

.g2g-desc {
  width: 60%; }
  .g2g-desc__link {
    display: block;
    background: #ebebeb;
    color: #252525;
    padding: 5px;
    margin: 3px; }

.apps-picture {
  height: 200px; }
  @media (max-width: 767px) {
    .apps-picture {
      height: auto; } }
  .apps-picture__img {
    height: 100%;
    display: none; }
    .apps-picture__img.active {
      display: block; }

.update__img {
  width: 100px;
  margin: 10px auto; }

.update__p {
  color: #2090a4;
  text-align: center; }

.ktkln__img {
  width: 150px;
  margin: 10px 0; }

.status {
  padding: 30px 20px; }

.program {
  margin: 0;
  border-top: none;
  border-left: 1px solid #b9b9b9;
  border-right: 1px solid #b9b9b9; }
  .program-picture {
    position: relative; }
    .program-picture__img {
      height: 200px; }
      @media (max-width: 767px) {
        .program-picture__img {
          height: auto; } }
    .program-picture__label {
      position: absolute;
      bottom: 0;
      left: 0;
      background: #f5d329;
      font-size: 12px;
      color: #252525;
      padding: 4px 12px;
      margin: 0; }
  .program__p {
    max-height: 200px; }
  .program-body {
    height: 280px;
    overflow: hidden; }

.agenda {
  padding: 10px;
  height: 200px;
  overflow: hidden;
  display: block;
  border: 1px solid #EBEBEB; }
  .agenda__img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    float: left; }
  .agenda-desc {
    width: 50%;
    float: left;
    padding: 10px;
    overflow: hidden; }
    .agenda-desc__label {
      color: #252525;
      font-size: 11px; }
    .agenda-desc__h4 {
      font-size: 16px;
      line-height: 24px;
      color: #252525; }

.socmed {
  height: 200px; }
  .socmed-tab {
    margin-bottom: 20px; }
    .socmed-tab__link {
      color: #b9b8b8;
      padding: 5px 10px;
      font-size: 12px;
      text-decoration: none; }
      .socmed-tab__link:hover {
        text-decoration: none; }
      .socmed-tab__link.active {
        background: #eeeeee;
        color: #252525;
        border-radius: 5px; }
  .socmed-container {
    display: none;
    text-align: center; }
    .socmed-container.active {
      display: block;
      overflow: scroll;
      margin: 0 auto; }
      .socmed-container.active#facebook {
        max-height: 200px; }
        @media (max-width: 200px) {
          .socmed-container.active#facebook {
            width: 200px;
            max-height: 200px;			} }
      .socmed-container.active#twitter {
        max-height: 200px;
        overflow: scroll; }
		 .socmed-container.active#instagram {
        max-height: 200px;
        overflow: scroll; }

.gallery img:nth-child(n+2) {
  display: none; }

.gallery-display {
  position: relative; }
  .gallery-display-prev, .apps-prev, .infografis-widget-prev, .gallery-display-next, .apps-next, .infografis-widget-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    opacity: .5;
    -webkit-transition: opacity .2s;
    transition: opacity .2s; }
    .gallery-display-prev:hover, .apps-prev:hover, .infografis-widget-prev:hover, .gallery-display-next:hover, .apps-next:hover, .infografis-widget-next:hover {
      opacity: 1; }
  .gallery-display-prev, .apps-prev, .infografis-widget-prev {
    left: 10px; }
  .gallery-display-next, .apps-next, .infografis-widget-next {
    right: 10px; }
  .gallery-display-text {
    position: absolute;
    bottom: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    color: #FFF;
    width: 100%;
    padding: 10px;
    font-size: 16px; }

.information {
  list-style: none;
  padding: 0; }
  .information__number {
    color: #f5d329; }
  .information__link {
    background: #f5f5f5;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    padding: 10px 20px;
    margin: 10px 0;
    color: #252525;
    font-size: 16px; }
    .information__link:hover {
      text-decoration: none; }

.layanan {
  border: 1px solid #EBEBEB; }
  .layanan__img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 250px;
    width: 100%;
    object-fit: cover; }
    @media (max-width: 767px) {
      .layanan__img {
        height: auto; } }
    .layanan__img.jobsinfo-chart {
      background: #dddee0; }
    .layanan__img.penempatan-chart {
      background: #f5d329; }
    .layanan__img.pengaduan-chart {
      background: #f5d329; }
    .layanan__img.kepulangan-chart {
      background: #dddee0; }
    .layanan__img.pengerahan-chart {
      background: #f9054f; }
    .layanan__img.pemberdayaan-chart {
      background: #0ed5f6; }
  .layanan-action {
    position: relative;
    height: 40px;
    width: 100%; }
    .layanan-action-text {
      height: 100%;
      width: 100%;
      padding: 10px 10px 10px 40px;
      background: rgba(0, 0, 0, 0.8);
      color: #FFF;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden; }
      .layanan-action-text:hover {
        text-decoration: none;
        color: #cccccc; }
    .layanan-action__icon {
      position: absolute;
      left: 0;
      top: 0;
      height: 40px;
      width: 40px;
      padding: 10px;
      background: #252525;
      font-size: 16px;
      color: #FFF;
      text-decoration: none;
      text-align: center;
      cursor: pointer; }

/* Override gpr styles */
#gpr-kominfo-widget-container {
  height: 200px;
  overflow-y: scroll; }
  @media (min-width: 768px) and (max-width: 991px) {
    #gpr-kominfo-widget-container {
      height: auto; } }

.website {
  margin: 0 35px; }
  .website-link {
    display: block;
    text-decoration: none;
    height: 100px;
    margin: 10px 0; }
    .website-link__img {
      height: 100%; }

.reformasi {
  padding-left: 30px;
  padding-right: 30px; }
  .reformasi-gallery-slide {
    height: 250px;
    margin: 0 10px; }
    .reformasi-gallery-slide__img {
      height: 100%;
      width: 100%;
      object-fit: cover; }

.single-header {
  background-image: url(../img/bg-footer.png);
  background-color: #252525;
  background-repeat: no-repeat;
  background-size: cover;
  color: #f5d329;
  padding: 50px 0; }
  .single-header__h1 {
    margin: 0; }

.single-content {
  background: #FFF;
  margin-bottom: 30px; }

.single-nav {
  background: #FFF;
  padding: 20px;
  margin-bottom: 30px; }
  .single-nav__arrow {
    display: block;
    margin-bottom: 10px; }
    .single-nav__arrow:hover {
      text-decoration: none; }
  .single-nav__label {
    color: #252525;
    font-size: 12px; }
  .single-nav-col {
    width: 50%;
    padding: 5px;
    float: left; }
  .single-nav-picture {
    height: 120px; }
    .single-nav-picture__img {
      height: 100%;
      width: 100%;
      object-fit: cover; }
  .single-nav__p {
    height: 80px;
    overflow: hidden; }

.full-content {
  margin-bottom: 30px; }

.content-header {
  text-align: center;
  padding: 30px; }
  .content-header__label {
    display: inline-block;
    background: #2090a4;
    margin-bottom: 20px;
    padding: 5px 10px;
    color: #FFF; }
  .content-header__h1 {
    font-size: 26px;
    color: #252525;
    margin: 0 0 20px;
    line-height: 32px; }
    .content-header__h1--blue {
      color: #2090a4; }
  .content-header__h2 {
    font-size: 20px;
    color: #585858; }
  .content-header-helper {
    color: #c9c7c7; }
    .content-header-helper__divider {
      background-color: #c9c7c7;
      border-radius: 50%;
      width: 5px;
      height: 5px;
      display: inline-block;
      margin: 0 10px;
      position: relative;
      top: -2px; }

.content-picture {
  max-height: 500px;
  overflow: hidden; }
  .content-picture__img {
    width: 100%; }

.content-caption {
  padding: 10px 30px;
  color: rgba(0, 0, 0, 0.54); }
  .content-caption p {
    margin: 0; }

.content-body {
  padding: 30px; }
  @media (max-width: 767px) {
    .content-body {
      padding: 10px; } }
  .content-body--white {
    background: #FFF; }
  .content-body__p,
  .content-body p {
    line-height: 24px;
    margin-bottom: 20px; }

.content-dropdown {
  background: #2090a4;
  color: #FFF;
  position: relative;
  padding: 10px;
  cursor: pointer; }
  .content-dropdown-container.active .content-list {
    display: block; }
  .content-dropdown-container.active .content-dropdown__p {
    color: #f5d329; }
  .content-dropdown-container.active .content-dropdown__icon {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg); }
  .content-dropdown__p {
    padding-right: 30px;
    margin: 0; }
  .content-dropdown__icon {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -5px; }

.content-list {
  display: none;
  list-style: none;
  background: #efeeee;
  padding-left: 0;
  margin: 0; }
  .content-list-dropdown.active .content-sublist {
    display: block; }
  .content-list-dropdown.active .content-list-dropdown-item__icon {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg); }
  .content-list-dropdown-item {
    color: #252525;
    position: relative;
    padding: 10px 10px 10px 20px;
    cursor: pointer; }
    .content-list-dropdown-item__p {
      padding-right: 30px;
      margin: 0; }
    .content-list-dropdown-item__icon {
      position: absolute;
      right: 10px;
      top: 50%;
      margin-top: -5px; }

.content-sublist {
  display: none;
  list-style: none;
  background: #FFF;
  padding-left: 10px; }
  .content-sublist__item {
    padding: 10px 10px 10px 20px;
    font-size: 12px; }
    .content-sublist__item a {
      margin: 0 5px;
      font-size: 11px; }

.content-share {
  padding: 0 30px 30px;
  text-align: center; }
  .content-share-col {
    float: left;
    padding: 10px;
    width: 25%; }
    .content-share-col:first-child {
      padding-left: 0; }
    .content-share-col:last-child {
      padding-right: 0; }
    @media (max-width: 767px) {
      .content-share-col {
        width: 50%; }
        .content-share-col:nth-child(odd) {
          padding-left: 0; }
        .content-share-col:nth-child(even) {
          padding-right: 0; } }
  .content-share__btn {
    display: inline-block;
    width: 100%;
    padding: 5px;
    text-align: center;
    font-size: 22px;
    color: #FFF; }
    .content-share__btn:hover {
      color: #cccccc; }
    .content-share__btn--fb {
      background-color: #3b5998; }
      .content-share__btn--fb:hover {
        background-color: #1e2e4f; }
    .content-share__btn--twitter {
      background-color: #55acee; }
      .content-share__btn--twitter:hover {
        background-color: #147bc9; }
    .content-share__btn--gplus {
      background-color: #dd4b39; }
      .content-share__btn--gplus:hover {
        background-color: #96271a; }
    .content-share__btn--whatsapp {
      background-color: #4dc247; }
      .content-share__btn--whatsapp:hover {
        background-color: #2d7a29; }

.bnp-breadcrumb {
  padding-top: 10px; }
  .bnp-breadcrumb li {
    display: inline-block;
    list-style-type: none; }
  .bnp-breadcrumb__link {
    color: #FFF; }
    .bnp-breadcrumb__link:hover {
      color: #f5d329;
      text-decoration: none; }
  .bnp-breadcrumb__divider {
    display: inline-block;
    margin: 0 5px;
    color: #FFF; }

.bnp-list {
  list-style: none;
  margin: 0;
  padding: 0 10px; }
  .bnp-list li {
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom: 1px solid #E0E0E0; }
    .bnp-list li:last-child {
      border-bottom: none; }
    .bnp-list li:hover .list-element {
      padding-left: 20px;
      text-decoration: none; }
      .bnp-list li:hover .list-element .list-element-box {
        background: #f5d329;
        color: #FFF; }
      .bnp-list li:hover .list-element .list-element__p {
        color: #f5d329; }
      .bnp-list li:hover .list-element:before {
        display: block;
        content: " ";
        width: 25px;
        height: 2px;
        background: #f5d329;
        position: absolute;
        left: -10px;
        top: 50%; }

.list-element {
  display: block;
  padding: 10px;
  text-decoration: none;
  position: relative;
  height: 32px;
  cursor: pointer; }
  .list-element__p {
    font-size: 12px;
    padding-right: 40px;
    margin: 0;
    line-height: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #252525; }
  .list-element-box {
    position: absolute;
    right: 0;
    top: 0;
    min-width: 20px;
    min-height: 20px;
    padding: 5px;
    background: transparent;
    border: 1px solid #f5d329;
    color: #f5d329; }

.bnp-table-head th {
  font-size: 18px;
  color: #252525; }

.bnp-table-body {
  background: #FFF;
  font-size: 13px; }
  @media (max-width: 767px) {
    .bnp-table-body {
      font-size: 12px; } }

.bnp-table tr:hover .bnp-table__title {
  padding-left: 20px;
  text-decoration: none;
  color: #f5d329; }
  .bnp-table tr:hover .bnp-table__title:before {
    display: block;
    content: " ";
    width: 25px;
    height: 2px;
    background: #f5d329;
    position: absolute;
    left: -10px;
    top: 50%; }

.bnp-table tr:hover .bnp-table__box {
  background: #f5d329;
  color: #FFF; }

.bnp-table__title {
  display: block;
  color: #252525;
  position: relative; }

.bnp-table__box {
  min-width: 20px;
  min-height: 20px;
  background: transparent;
  border: 1px solid #252525;
  color: #252525; }

.bnp-table select {
  width: 100%; }

.kontak-picture {
  height: 500px; }
  .kontak-picture iframe {
    width: 100%; }

.kontak__h3 {
  font-size: 20px;
  color: #565656;
  font-weight: 600; }

.kontak__p {
  font-size: 14px;
  color: #252525;
  margin: 0 !important; }

.sejarah-picture {
  height: 350px; }
  @media (min-width: 768px) and (max-width: 991px) {
    .sejarah-picture {
      height: auto; } }
  .sejarah-picture__img {
    height: 100%;
    width: 100%;
    object-fit: cover; }

.sejarah-box {
  border: 1px solid #e0e0e0; }
  .sejarah-box.active .sejarah-box-title__arrow i {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg); }
  .sejarah-box.active .sejarah-box-body {
    display: block; }
  .sejarah-box-title {
    height: 60px;
    position: relative;
    color: #FFF;
    font-size: 20px;
    line-height: 1em;
    cursor: pointer; }
    .sejarah-box-title__text {
      height: 100%;
      padding: 20px;
      font-size: 14px;
      background: rgba(0, 0, 0, 0.8);
      padding-right: 60px; }
    .sejarah-box-title__arrow {
      text-align: center;
      position: absolute;
      padding: 20px;
      width: 60px;
      height: 100%;
      background: #000;
      right: 0;
      top: 0; }
      .sejarah-box-title__arrow i {
        -webkit-transition: .2s;
        transition: .2s; }
  .sejarah-box-body {
    display: none;
    height: 260px;
    overflow-y: scroll; }
    .sejarah-box-body__p {
      position: relative;
      padding: 10px; }

.visimisi {
  font-size: 16px; }
  .visimisi__img {
    margin: 0 auto; }
  .visimisi__h4 {
    font-size: 20px;
    font-weight: 600; }

.struktur .list-element__p {
  line-height: 1em;
  margin-bottom: 0; }

/* ====================
 * Infografis
 * ==================== */
.infografis {
  position: relative;
  margin: 0 auto 50px;
  text-align: center; }
  .infografis-slide {
    height: 100%; }
    .infografis-slide img {
      margin: 0 auto; }
  .infografis .btn-prev,
  .infografis .btn-next {
    position: absolute;
    bottom: -50px;
    left: 50%;
    z-index: 9999; }
  .infografis .btn-prev {
    -webkit-transform: translateX(-50%) translateX(-50%) translateX(-10px);
    -ms-transform: translateX(-50%) translateX(-50%) translateX(-10px);
    transform: translateX(-50%) translateX(-50%) translateX(-10px); }
  .infografis .btn-next {
    -webkit-transform: translateX(-50%) translateX(50%) translateX(10px);
    -ms-transform: translateX(-50%) translateX(50%) translateX(10px);
    transform: translateX(-50%) translateX(50%) translateX(10px); }
  .infografis-img {
    height: 200px;
    width: 200px;
    position: absolute;
    top: 50%;
    left: 50%; }
    .infografis-img img {
      width: 100%;
      height: 100%; }
    .infografis-img.infografis-1 {
      -webkit-transform: translate(-50%, -50%) translateY(-225px);
      -ms-transform: translate(-50%, -50%) translateY(-225px);
      transform: translate(-50%, -50%) translateY(-225px); }
    .infografis-img.infografis-2 {
      -webkit-transform: translate(-50%, -50%) translate(160px, -160px);
      -ms-transform: translate(-50%, -50%) translate(160px, -160px);
      transform: translate(-50%, -50%) translate(160px, -160px); }
    .infografis-img.infografis-3 {
      -webkit-transform: translate(-50%, -50%) translateX(225px);
      -ms-transform: translate(-50%, -50%) translateX(225px);
      transform: translate(-50%, -50%) translateX(225px); }
    .infografis-img.infografis-4 {
      -webkit-transform: translate(-50%, -50%) translate(160px, 160px);
      -ms-transform: translate(-50%, -50%) translate(160px, 160px);
      transform: translate(-50%, -50%) translate(160px, 160px); }
    .infografis-img.infografis-5 {
      -webkit-transform: translate(-50%, -50%) translateY(225px);
      -ms-transform: translate(-50%, -50%) translateY(225px);
      transform: translate(-50%, -50%) translateY(225px); }
    .infografis-img.infografis-6 {
      -webkit-transform: translate(-50%, -50%) translate(-160px, 160px);
      -ms-transform: translate(-50%, -50%) translate(-160px, 160px);
      transform: translate(-50%, -50%) translate(-160px, 160px); }
    .infografis-img.infografis-7 {
      -webkit-transform: translate(-50%, -50%) translateX(-225px);
      -ms-transform: translate(-50%, -50%) translateX(-225px);
      transform: translate(-50%, -50%) translateX(-225px); }
    .infografis-img.infografis-8 {
      -webkit-transform: translate(-50%, -50%) translate(-160px, -160px);
      -ms-transform: translate(-50%, -50%) translate(-160px, -160px);
      transform: translate(-50%, -50%) translate(-160px, -160px); }
  .infografis-widget__img {
    height: 300px;
    display: none; }
    .infografis-widget__img.active {
      display: block; }

/*# sourceMappingURL=public.css.map */
