/* font face(buat offline)*/
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Thin.ttf") format("truetype");
  font-weight: 100;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Black.ttf") format("truetype");
  font-weight: 900;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: rgb(250, 250, 250);
}

body.offcanvas-menu:before {
  opacity: 1;
  visibility: visible;
}

/* header */
.header {
  height: 100px;
  background: rgb(240, 255, 240);
  background: linear-gradient(
    90deg,
    rgba(240, 255, 240, 1) 0%,
    rgba(186, 255, 195, 1) 27%,
    rgba(0, 117, 60, 1) 100%
  );
  border-bottom: 5px solid #00914a;
}

.bungkus {
  height: 100px;
  align-items: center;
}

.image-container {
  text-align: center;
}

.image-logo {
  width: 90px;
}

.brand {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #444;
  text-transform: uppercase;
}
a:hover {
  text-decoration: none;
  color: #111;
}
/* endheader */

/* navbar */
.site-navbar {
  margin-bottom: 0px;
  background-color: var(--danger);
  width: 100%;
}

.site-navbar a {
  color: #b3b3b3;
}

.site-navbar .site-logo {
  position: relative;
  left: 0;
  font-size: 24px;
}

.site-navbar .site-navigation .site-menu {
  margin-bottom: 0;
}

.site-navbar .site-navigation .site-menu .active {
  color: #007bff;
  display: inline-block;
  padding: 20px 20px;
}

.site-navbar .site-navigation .site-menu a {
  text-decoration: none !important;
  display: inline-block;
}

.site-navbar .site-navigation .site-menu > li {
  display: inline-block;
}

.site-navbar .site-navigation .site-menu > li > a {
  padding: 20px 20px;
  font-size: 16px;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none !important;
}

.site-navbar .site-navigation .site-menu > li > a:hover {
  color: #007bff;
}

.site-navbar .site-navigation .site-menu > li.social > a {
  padding-left: 5px;
  padding-right: 5px;
}

.site-navbar .site-navigation .site-menu .has-children {
  position: relative;
}

.site-navbar .site-navigation .site-menu .has-children > a {
  position: relative;
  padding-right: 20px;
}

.site-navbar .site-navigation .site-menu .has-children > a:before {
  position: absolute;
  content: "\e313";
  font-size: 16px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "icomoon";
}

.site-navbar .site-navigation .site-menu .has-children .dropdown {
  visibility: hidden;
  opacity: 0;
  top: 100%;
  position: absolute;
  text-align: left;
  border-top: 2px solid #007bff;
  -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
  padding: 0px 0;
  margin-top: 20px;
  margin-left: 0px;
  background: #fff;
  -webkit-transition: 0.2s 0s;
  -o-transition: 0.2s 0s;
  transition: 0.2s 0s;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
  position: absolute;
}

.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown.arrow-top:before {
  bottom: 100%;
  left: 20%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown.arrow-top:before {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #fff;
  border-width: 10px;
  margin-left: -10px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a {
  text-transform: none;
  letter-spacing: normal;
  -webkit-transition: 0s all;
  -o-transition: 0s all;
  transition: 0s all;
  color: #000;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown .active {
  color: #007bff !important;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown > li {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 210px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown > li > a {
  padding: 9px 20px;
  display: block;
}

.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li
  > a:hover {
  background: #eff1f3;
  color: #000;
}

.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li.has-children
  > a:before {
  content: "\e315";
  right: 20px;
}

.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li.has-children
  > .dropdown,
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li.has-children
  > ul {
  left: 100%;
  top: 0;
}

.site-navbar .site-navigation .site-menu .has-children:hover > a,
.site-navbar .site-navigation .site-menu .has-children:focus > a,
.site-navbar .site-navigation .site-menu .has-children:active > a {
  color: #007bff;
}

.site-navbar .site-navigation .site-menu .has-children:hover,
.site-navbar .site-navigation .site-menu .has-children:focus,
.site-navbar .site-navigation .site-menu .has-children:active {
  cursor: pointer;
}

.site-navbar .site-navigation .site-menu .has-children:hover > .dropdown,
.site-navbar .site-navigation .site-menu .has-children:focus > .dropdown,
.site-navbar .site-navigation .site-menu .has-children:active > .dropdown {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
}

.site-mobile-menu {
  width: 300px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2000;
  padding-top: 20px;
  background: #fff;
  height: calc(100vh);
  -webkit-transform: translateX(110%);
  -ms-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.offcanvas-menu .site-mobile-menu {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.site-mobile-menu .site-mobile-menu-header {
  width: 100%;
  float: left;
  padding-left: 20px;
  padding-right: 20px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
  float: right;
  margin-top: 8px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
  font-size: 30px;
  display: inline-block;
  padding-left: 10px;
  padding-right: 0px;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
  float: left;
  margin-top: 10px;
  margin-left: 0px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
  display: inline-block;
  text-transform: uppercase;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
  max-width: 70px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
  text-decoration: none;
}

.site-mobile-menu .site-mobile-menu-body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 0 20px 20px 20px;
  height: calc(100vh - 52px);
  padding-bottom: 150px;
}

.site-mobile-menu .site-nav-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.site-mobile-menu .site-nav-wrap a {
  padding: 10px 20px;
  display: block;
  position: relative;
  color: #212529;
}

.site-mobile-menu .site-nav-wrap a:hover {
  color: #007bff;
}

.site-mobile-menu .site-nav-wrap li {
  position: relative;
  display: block;
}

.site-mobile-menu .site-nav-wrap li .active {
  color: #007bff;
}

.site-mobile-menu .site-nav-wrap .social {
  display: inline-block;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse {
  position: absolute;
  right: 0px;
  top: 10px;
  z-index: 20;
  width: 36px;
  height: 36px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
  background: #f8f9fa;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
  font-size: 12px;
  z-index: 20;
  font-family: "icomoon";
  content: "\f078";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  -ms-transform: translate(-50%, -50%) rotate(-180deg);
  transform: translate(-50%, -50%) rotate(-180deg);
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.site-mobile-menu .site-nav-wrap > li {
  display: block;
  position: relative;
  float: left;
  width: 100%;
}

.site-mobile-menu .site-nav-wrap > li.social {
  float: none !important;
  width: auto !important;
}

.site-mobile-menu .site-nav-wrap > li > a {
  padding-left: 20px;
  font-size: 20px;
}

.site-mobile-menu .site-nav-wrap > li > ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-mobile-menu .site-nav-wrap > li > ul > li {
  display: block;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > a {
  padding-left: 40px;
  font-size: 16px;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > ul {
  padding: 0;
  margin: 0;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li {
  display: block;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {
  font-size: 16px;
  padding-left: 60px;
}

.site-mobile-menu .site-nav-wrap[data-class="social"] {
  float: left;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 5em;
}

.site-mobile-menu .site-nav-wrap[data-class="social"] > li {
  width: auto;
}

.site-mobile-menu .site-nav-wrap[data-class="social"] > li:first-child a {
  padding-left: 15px !important;
}

.sticky-wrapper {
  position: absolute;
  z-index: 100;
  width: 100%;
}

.sticky-wrapper .site-navbar {
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.sticky-wrapper .site-navbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-wrapper .site-navbar .site-menu-toggle {
  color: #fff;
}

.sticky-wrapper .site-navbar .site-logo a {
  color: #fff;
}

.sticky-wrapper .site-navbar .site-menu > li > a {
  color: rgba(255, 255, 255, 0.7) !important;
}

.sticky-wrapper .site-navbar .site-menu > li > a:hover,
.sticky-wrapper .site-navbar .site-menu > li > a.active {
  color: #fff !important;
  background-color: #b80012c7;
}

.sticky-wrapper.is-sticky .site-navbar {
  background: #fff;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1);
  box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1);
}

.sticky-wrapper.is-sticky .site-navbar .site-menu-toggle {
  color: #000;
}

.sticky-wrapper.is-sticky .site-navbar .site-logo a {
  color: #007bff;
}

.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a {
  color: #000 !important;
}

.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a:hover,
.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a.active {
  background-color: #007bff !important;
  color: #fff !important;
}
/* endnavbar */

/* main page */
.main-header {
  background-color: #e1f1f1;
}

.main-header .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40vh;
}

.main-header .container h1 {
  background-color: rgba(200, 200, 200, 0.2);
  font-family: "Lato", sans-serif;
  border: none;
  border-radius: 10px;
  padding: 10px;
}

.content {
  padding-bottom: 60px;
}

.berita {
  border: none;
}

.berita:hover {
  box-shadow: -1px 1px 10px rgba(0, 163, 54, 0.3);
}

.berita .img-berita {
  width: 100%;
  height: 250px;
}

.berita-img {
  height: 100%;
  transition: 0.3s ease-in-out;
}

.berita-img:hover {
  filter: saturate(0.5);
}

.berita .berita-slice-info {
  font-size: 14px;
  color: #b3b3b3;
}

.berita .berita-title {
  font-family: "Roboto Slab", serif;
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
  color: #212529;
}

.berita .berita-title:hover {
  text-decoration: underline;
}

.berita .berita-read-more {
  border-radius: 20px;
  background-color: #00914a;
  color: #efefef;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

.berita .berita-read-more:hover {
  color: #95d5ff;
}

.berita .berita-read-more:hover > .berita-ico {
  visibility: visible;
  opacity: 1;
  margin-left: 5px;
}

.berita .berita-ico {
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.berita-side {
  padding-left: 30px;
}

.berita-side .side-title {
  text-transform: uppercase;
  color: #04a141;
  font-size: 22px;
  margin-bottom: 0;
}

.dev-title-side {
  border-bottom: 3px solid #669277;
}

.list-side-berita {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-top: 10px;
}

.list-side-berita li::before {
  font-family: "icomoon";
  content: "\f124";
  color: #669277;
  font-weight: bold;
  display: inline-block;
  width: 20px;
  margin-left: 0;
}

.list-side-berita li {
  padding-top: 5px;
  padding-bottom: 5px;
}

.list-side-berita li a {
  font-size: 18px;
  color: #575757;
}

.list-side-berita li a:hover {
  text-decoration: underline;
}

.berita-content .berita-title {
  font-family: "Roboto Slab", serif;
  font-size: 25px;
  font-weight: 600;
  margin-top: 10px;
  color: #212529;
}

img {
  border: none !important;
}

.error-image {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  background: #8a2387; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #f27121,
    #e94057,
    #8a2387
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #f27121,
    #e94057,
    #8a2387
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.error-image .error-message {
  color: #fff;
  font-family: "Courier New", Courier, monospace;
  font-size: 16px;
}

.title-folder {
  text-transform: uppercase;
  color: #575757;
}

.link-folder {
  margin: 5px 0;
}

.link-folder a {
  color: #575757;
}

.link-folder a:hover {
  text-decoration: underline;
}

.link-folder i {
  color: #e5e412;
  margin-right: 10px;
}

/* .barita .img-berita{
  border: none;
} */

/* end main page */

/* footer */

.footer {
  color: rgb(110, 110, 110);
  background-color: #fff;
  padding-top: 80px;
}

.title-footer {
  text-transform: uppercase;
}

.dev-title {
  border-bottom: 3px solid #00914a;
  width: 50px;
}

.footer .list-group-item {
  border: none;
  padding: 0.75rem 0;
}

.footer .list-group-item a {
  color: rgb(110, 110, 110);
}

.footer .list-group-item a:hover {
  color: #00914a;
}

.footer .copyright {
  box-shadow: inset 1px 2px 5px rgba(0, 0, 0, 0.4);
  text-align: center;
  color: #111;
  background-color: #e5e412;
  padding: 10px 0;
  margin-top: 30px;
}

.media-btn {
  color: #00914a;
  background-color: #efefef;
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #bbba;
}

.media-btn i {
  line-height: 28px;
  font-size: 20px;
}

/* end footer */

.height-fixer {
  margin-top: 80px;
}

/* mobile */
@media (max-width: 768px) {
  /* navbar */
  .brand-container {
    text-align: center;
  }

  .bungkus .col-md-4 {
    display: none;
  }

  .brand {
    font-size: 25px;
  }

  .image-logo {
    display: none;
  }
  /* endnvbar */

  /* main page */
  .main-header {
    margin-top: 65px;
  }
  .main-content {
    padding-bottom: 200px;
  }

  .berita-side {
    padding-left: 0;
    margin-top: 25px;
  }
  /* end main page */

  /* footer */
  .footer {
    padding-top: 50px;
  }
  /* end footer */
}
/* endmobile */
