/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Mona Sans", sans-serif;
  --font-secondary: "Poppins", sans-serif;
  --font-releway: "releway", sans-serif;
  --font-roboto-mono: "Roboto Mono", sans-serif;
  --font-grey: rgba(255, 255, 255, 0.6);
  --font-white: #fff;
  --loader-background-color: #eeeeee;
  --loader-highlight-color: #dedede;
}

/* Carousel */
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(0, 0%, 0%);

  /*========== Border radius ==========*/
  --border-radius: 10px;
  --box-shadow: rgba(0, 0, 0, 0.25) 0px 10px 30px -20px;
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat Alternates", sans-serif;
  --biggest-font-size: 2rem;
  --big-font-size: 1.5rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* Colors */
:root {
  --hue-color: 190;

  --color-default: #333333;
  --color-primary: #f5efe6;
  --color-secondary: #555555;
  --color-secondary-hover: #333;
  --color-secondary-soft: #e0f2fe;
  --color-btn-home: #555555;
  --color-btn-home-hover: #333;
  --color-footer: #31363f;
  --scroll-bar-color-hover: hsl(var(--hue-color), 8%, 60%);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 75%);
}

/* SKELETONLOADER */
.loader-skeleton {
  width: 100%;
  background: linear-gradient(90deg, var(--loader-background-color) 25%, var(--loader-highlight-color) 50%, var(--loader-background-color) 75%);
  background-size: 200% 100%;
  animation: loading 2s infinite ease-in-out;
  border-radius: 8px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

li:has(.text-primary-hover) {
  color: var(--color-secondary);
}

li:has(.text-primary-hover):hover {
  color: var(--color-primary);
}

.text-justify {
  text-align: justify;
}

/* END SKELETONLOADER */

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.6rem;
  background-color: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--scroll-bar-color-hover);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-default);
  text-decoration: none;
}

a:hover {
  color: var(--color-secondary);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

.fix {
  overflow: hidden;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.sections-bg {
  background-color: #f6f6f6;
}

.section-header {
  /* text-align: center; */
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-secondary);
  /* left: 0; */
  /* right: 0; */
  bottom: 0;
  margin: auto;
}

.section-header-artikel {
  text-align: center;
  padding-bottom: 30px;
}

.section-header-artikel h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.section-header-artikel h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-secondary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
  color: #6f6f6f;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 100px 0 30px 0;
  min-height: 20vh;
  position: relative;
}

.breadcrumbs .page-header h2 {
  font-size: 26px;
  font-weight: 600;
  color: #3a4d39;
  font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  background: #f5f7f8;
  /* background: var(--color-primary); */
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-default);
}

.breadcrumbs nav ol a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li + li {
  padding-left: 10px;
}

.breadcrumbs nav ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary);
  content: "/";
}

/* PROFIL */

.inner-page .nav {
  display: flex;
}

.inner-page .content {
  font-size: 20px;
  margin-bottom: 16px;
}

.inner-page .content .visi {
  font-size: 16px;
}

.inner-page .content .misi {
  font-size: 16px;
}

.inner-page .indicator li {
  position: relative;
  display: flex;
  align-items: center;
  grid-gap: 0.5rem;
  padding: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  /* justify-content: center; */
  /* border-right: 3px solid transparent; */
}

.inner-page .indicator li i {
  font-size: 1rem;
}

.inner-page .indicator li:hover {
  background: #f5f9fc;
}

.inner-page .indicator {
  list-style: none;
  margin: 0;
  padding: 0;
}

.inner-page .indicator li h1 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.inner-page .indicator {
  list-style: none;
  border: 1px solid var(--border-color);
  border-radius: 6px;
}

.inner-page .indicator li p {
  margin-bottom: 0.5rem;
  color: #666666;
  font-size: 0.876;
}

.inner-page .nav {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.01);
  /* transition: all 0.3s ease; */
}

.inner-page .navl {
  display: flex;
  align-items: center;
  /* grid-gap: 0.5rem; */
  padding: 13px;
  font-size: 15px;
  font-weight: 500;
  color: none;
  border: none;
  background: none;
  color: var(--text-color);
  /* transition: all 0.3s ease; */
}

.inner-page .navl:hover {
  background: var(--box-active-color);
}

.inner-page button i {
  margin-right: 5px;
}

.inner-page .navl.active {
  background: var(--box-active-color);
  border-radius: 6px;
  /* transition: all 0.3s ease; */
}

.inner-page .container .tab-pane {
  padding: 10px;
}

.inner-page .tab-content {
  border-radius: 6px;
}

.inner-page .container h3 {
  font-size: 20px;
}

.inner-page .footer-social span {
  font-weight: 500;
}

.inner-page .footer-social {
  border-bottom: 1px solid #e4e4e4;
  border-top: 1px solid #e4e4e4;
  margin: 30px 0;
  padding: 20px 0;
  /* transition: all 0.3s ease; */
}

.inner-page .footer-social .penulis {
  color: var(--color-penulis);
  font-size: 15px;
  font-weight: 400;
}

.inner-page .footer-social .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
  font-size: 15px;
  transition: 0.3s;
  color: var(--color-secondary);
}

.inner-page .footer-social .social-links a:hover {
  color: var(--color-secondary-hover);
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--color-secondary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: var(--color-secondary-hover);
  color: #eee;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

/* HTML: <div class="loader"></div> */
#preloader .loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
}
#preloader .loader::before,
#preloader .loader::after {
  content: "";
  grid-area: 1/1;
  --c: no-repeat radial-gradient(farthest-side, #25b09b 92%, #0000);
  background: var(--c) 50% 0, var(--c) 50% 100%, var(--c) 100% 50%, var(--c) 0 50%;
  background-size: 12px 12px;
  animation: l12 1s infinite;
}
#preloader .loader::before {
  margin: 4px;
  filter: hue-rotate(45deg);
  background-size: 8px 8px;
  animation-timing-function: linear;
}

@keyframes l12 {
  100% {
    transform: rotate(0.5turn);
  }
}

#preloader .loaderr {
  font-size: 48px;
  color: var(--color-secondary);
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  position: relative;
}
#preloader .loaderr:after {
  content: "";
  height: 4px;
  width: 0%;
  display: block;
  background: #ff3d00;
  animation: 5s lineGrow linear infinite;
}

@keyframes lineGrow {
  to {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  z-index: 996;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #444444;
  transition: 0.3s;
  font-weight: 600;
  margin-right: 35px;
}

#topbar .contact-info a:hover {
  color: #888888;
}

#topbar .contact-info i {
  color: #1977cc;
  padding-right: 4px;
  margin-left: 15px;
  line-height: 0;
}

#topbar .contact-info i:first-child {
  margin-left: 0;
}

#topbar .social-links a {
  color: var(--color-secondary);
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: var(--color-btn-home-hover);
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/* #header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: rgba(29, 29, 29, 0.384);
}

#header.header-scrolled {
  background: rgba(56, 56, 56, 0.815);
  height: 60px;
} */

#header {
  background: rgba(29, 29, 29, 0.384);
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  top: 40px;
  box-shadow: 0px 2px 15px rgba(49, 49, 49, 0.1);
}

#header.header-scrolled {
  background: #333333e7;
  top: 0;
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: bold;
  font-family: "Montserrat Alternates", sans-serif;
}

#header .logo h1 span {
  color: var(--color-btn-home);
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-width: 35%;
}

@media (max-width: 768px) {
  #header {
    height: 50px;
    /* background: rgba(0, 0, 0, 0.8); */
  }

  #header .logo h1 {
    font-size: 28px;
  }
  #topbar .contact-info a {
    margin-right: 25px;
  }
}

.header-bg {
  /* background: url(../img/background/page-header.jpg); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 120px 0 60px;
}

.header-bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

@media (min-width: 1025px) {
  .header-bg {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  font-family: "Montserrat Alternates", sans-serif;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: var(--font-white);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar li:hover > a {
  color: #eee;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #0d2529;
}

.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(--color-secondary);
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #f1f1f1;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 2, 2, 0.9);
  /* background: rgba(5, 43, 3, 0.815); */
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #f1f1f1;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background: rgba(148, 148, 148, 0.685);
  border-radius: var(--border-radius);
  overflow-y: auto;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #999;
}

.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: var(--color-secondary);
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  font-family: var(--font-roboto-mono);
}

#hero .carousel {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
/*===============#hero  HOME ===============*/
#hero .home__swiper {
  position: relative;
  z-index: var(--z-tooltip);
}

#hero .home__article {
  position: relative;
  padding-top: 13rem;
  width: 100%;
  height: 100vh;
}

#hero .home__img,
#hero .home__shadow,
#hero .home__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#hero .home__img {
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

#hero .home__shadow {
  background-color: hsla(0, 0%, 0%, 0.05);
  z-index: -1;
}

#hero .home__data {
  text-align: center;
  /* background: #000; */
}

#hero .home__title {
  font-size: var(--biggest-font-size);
  /* margin-bottom: 1.5rem; */
  margin: 5rem 0;
  font-weight: var(--font-bold);
  color: var(--white-color);
  font-family: "Montserrat Alternates", sans-serif;

  /* font-family: "Roboto Mono", monospace; */
}

#hero .home__subtitle {
  font-size: var(--h3-font-size);
  margin-bottom: 0.5rem;
  color: var(--white-color);
  font-family: "Montserrat Alternates", sans-serif;
}

#hero .home__button {
  color: var(--white-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.3rem;
  font-weight: var(--font-semi-bold);
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--color-btn-home);
  font-family: "Montserrat Alternates", sans-serif;
  transition: all 0.3s ease;
}

#hero .home__button:hover {
  background: var(--color-btn-home-hover);
  color: #eee;
}

#hero .home__button i {
  position: relative;
  top: 1px;
  font-size: 1.5rem;
  font-weight: initial;
  transition: transform 0.4s;
}

#hero .home__button:hover i {
  transform: translateX(0.5rem);
}

#hero .home__social {
  position: absolute;
  display: flex;
  z-index: var(--z-tooltip);
  left: 1.5rem;
  bottom: 4rem;
  gap: 1.5rem;
}

#hero .home__social-link {
  color: var(--white-color);
  font-size: 1.5rem;
}

#hero .home__social-link:hover {
  color: var(--accent-color-soft);
}

/* Swiper class */
#hero .swiper {
  height: 100vh;
}

#hero .swiper-pagination {
  width: initial;
  height: max-content;
  top: 6rem;
  left: initial;
  right: 1.5rem;
  /* font-size: var(--big-font-size); */
  font-weight: var(--font-semi-bold);
  display: flex;
  column-gap: 0.25rem;
  align-items: center;
  color: var(--white-color);
}

#hero .swiper-pagination-total {
  font-size: var(--normal-font-size);
  font-family: "Montserrat Alternates", sans-serif;
  /* background: #000; */
}

#hero .swiper-button-prev::after,
#hero .swiper-button-next::after {
  content: "";
}

#hero .swiper-button-prev,
#hero .swiper-button-next {
  font-size: 1.5rem;
  color: var(--white-color);
  width: initial;
  height: initial;
  position: initial;
  outline: none;
}

#hero .swiper-navigation {
  position: absolute;
  z-index: var(--z-tooltip);
  height: max-content;
  bottom: 4rem;
  right: 1.5rem;
  display: flex;
  column-gap: 2.5rem;
}

/*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (min-width: 1150px) {
  #hero .container {
    margin-inline: auto;
  }

  #hero .home__data {
    text-align: initial;
  }

  #hero .home__subtitle {
    margin-bottom: 1rem;
  }

  #hero .home__title {
    margin-bottom: 1.5rem;
  }

  #hero .home__content {
    max-width: 1120px;
    margin-inline: auto;
    left: 0;
    right: 0;
  }

  #hero .home__social {
    left: 0;
    /* background: #000; */
  }

  #hero .swiper-pagination {
    top: 10rem;
  }

  #hero .swiper-pagination-total {
    font-size: 1.5rem;
  }

  #hero .swiper-navigation {
    right: 0;
    column-gap: 3.5rem;
  }

  #hero .swiper-button-prev,
  #hero .swiper-button-next {
    font-size: 3rem;
  }
}

/* For taller devices */
@media screen and (min-width: 800px) and (min-height: 800px) {
  #hero .home__article {
    padding-top: 17rem;
  }

  #hero .swiper-pagination {
    top: 13rem;
  }
}

/* For 2K resolutions (2048 x 1152) */
@media screen and (min-width: 2048px) {
  #hero .container,
  #hero .home__content {
    max-width: 1550px;
  }

  #hero .home__swiper,
  #hero .home__content,
  #hero .home__img,
  #hero .home__shadow {
    max-height: 1000px;
  }
}

/* End Hero */

/* Clients Section - Home Page
------------------------------*/
.clients {
  padding: 30px 0;
  background: #f5f7f8;
}

.clients .box {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .box .angka {
  font-size: 42px;
  font-weight: 600;
  color: #373a40;
  font-family: "Nunito", sans-serif;
}

.clients .box .label {
  color: #9d9d9d;
}

/*--------------------------------------------------------------
# tentang Section
--------------------------------------------------------------*/
.tentang .tentang-item + .tentang-item {
  margin-top: 60px;
}

.tentang .tentang-item .content {
  background-color: rgba(var(--accent-color-rgb), 0.05);
  color: rgba(var(--default-color-rgb), 0.9);
  padding: 30px;
  border-radius: 10px;
}

.tentang .tentang-item h3 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 15px;
}

.tentang .tentang-item .more-btn {
  color: var(--white-color);
  font-size: 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.3rem;
  font-weight: 500;
  padding: 3px 15px 3px 20px;
  border-radius: 50px;
  background: var(--color-secondary);
}

.tentang .tentang-item .more-btn:hover {
  background: var(--color-secondary-hover);
  color: var(--font-white);
}

.tentang .tentang-item .more-btn i {
  position: relative;
  top: 1.5px;
  font-size: 1.3rem;
  font-weight: initial;
  transition: transform 0.4s;
}

.tentang .tentang-item .more-btn:hover i {
  transform: translateX(0.5rem);
}

.tentang .tentang-item ul {
  list-style: none;
  padding: 0;
}

.tentang .tentang-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.tentang .tentang-item ul li:last-child {
  padding-bottom: 0;
}

.tentang .tentang-item ul i {
  font-size: 20px;
  margin-right: 10px;
  color: var(--accent-color);
}

/*=============== START LAKIP ===============*/
/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .swiper-slide .img {
  background: #fafafa;
  border-radius: var(--border-radius);
  display: grid;
  place-content: center;
  padding: 10px;
  border: 1px solid #eee;
}

.portfolio-description .swiper-slide .img img {
  width: 80px;
  height: 80px;
}

.portfolio-details .swiper-slide .content h2 {
  font-size: 18px;
  font-weight: 600;
}

.portfolio-details .swiper-slide .content p {
  font-size: 14px;
}

.portfolio-details .swiper-slide .btn-unduh {
  padding: 9px 15px;
  border-radius: 50px;
  background: var(--color-secondary);
  color: #fff;
  font-size: 14px;
  border: none;
  outline: none;
  transition: 0.3s;
}

.portfolio-details .swiper-slide .btn-unduh:hover {
  background: var(--color-secondary-hover);
}

.portfolio-details .portfolio-details-slider .swiper-slide {
  padding: 24px;
  border-radius: var(--border-radius);
  border: 1px solid #eee;
}

.portfolio-details .swiper-pagination {
  padding-top: 40px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #f1f1f1;
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-secondary);
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  position: absolute;
  display: grid;
  place-items: center;
  display: none;
  background: var(--color-swiper-layanan);
  transition: all 0.3s ease;
  width: 38px;
  height: 38px;
}

.portfolio-details .container:hover .swiper-button-prev,
.portfolio-details .container:hover .swiper-button-next {
  display: inline-flex;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 81, 173, 0.2);
  font-size: 14px;
  font-weight: 600;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: var(--color-secondary);
}

@media (max-width: 575px) {
  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
  font-size: 16px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: #9c9c9c;
  font-size: 12px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: #009d8b;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: white;
  height: 100%;
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: #009d8b;
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Recent Blog Posts
--------------------------------------------------------------*/
.recent-blog-posts .post-box {
  transition: 0.2s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
}

.recent-blog-posts .post-box:hover {
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  /* transform: translateY(-10px); */
  /* box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset; */
  /* box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px; */
}

.recent-blog-posts .post-box .post-img {
  overflow: hidden;
  position: relative;
}

.recent-blog-posts .post-box .post-img img {
  transition: 0.3s;
}

.recent-blog-posts .post-box .meta {
  margin-top: 15px;
}

.recent-blog-posts .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-default);
}

.recent-blog-posts .post-box .meta .post-author {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-default);
}

.recent-blog-posts .post-box .post-title {
  font-size: 20px;
  color: var(--color-default);
  font-weight: 700;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.2s;
}

.recent-blog-posts .post-box p {
  margin: 15px 0 0 0;
  color: var(--color-default);
}

.recent-blog-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 500;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
  padding: 0 0 3px 0;
  transition: all 0.2s ease;
}

.recent-blog-posts .post-box .readmore i {
  /* position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 7px;
  left: 115px; */
  /* display: flex; */
  position: absolute;
  margin-top: 1px;
  margin-left: 5px;
  line-height: 0;
  font-size: 18px;
  font-weight: 800;
  transition: all 0.2s ease;
}

.recent-blog-posts .post-box a:hover i {
  transform: translateX(0.25rem);
}

.recent-blog-posts .post-box .post-title:hover {
  color: var(--color-secondary);
}

.recent-blog-posts .post-box:hover .post-img img {
  transform: scale(1.1);
}

.recent-blog-posts .selengkapnya {
  margin-top: 60px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

.recent-blog-posts .selengkapnya .btn a {
  color: #eee;
}

.recent-blog-posts .selengkapnya i {
  position: absolute;
  margin-top: 3px;
  margin-left: 5px;
  line-height: 0;
  font-size: 18px;
  font-weight: 800;
  transition: all 0.2s ease;
}

.recent-blog-posts .selengkapnya .btn {
  background-color: var(--color-secondary);
  border-radius: 50px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-family: "Akzidenz Grotesk BQ Medium", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  outline: 0;
  padding: 10px 55px 10px 35px;
  text-align: center;
  transform: translateY(0);
  transition: transform 150ms, box-shadow 150ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.recent-blog-posts .selengkapnya .btn:hover {
  background: var(--color-secondary-hover);
  box-shadow: rgba(0, 0, 0, 0.15) 0 3px 9px 0;
  transform: translateY(-2px);
}

.recent-blog-posts .selengkapnya a:hover i {
  transform: translateX(0.25rem);
}

@media (min-width: 768px) {
  .recent-blog-posts .selengkapnya button {
    padding: 10px 30px;
  }
}

/*--------------------------------------------------------------
# Pengumuman
--------------------------------------------------------------*/
.pengumuman {
  padding: 60px 0;
}

.about .section-title {
  padding: 0 12px 10px 10px;
}

.pengu-btn {
  border: 1px solid var(--color-border-btn);
  color: var(--title-color);
  font-size: 14px;
  font-weight: 400;
  padding: 10px;
  text-decoration: none;
  border-radius: 5px;
  margin-right: 12px;
  /* transition: all 0.3s ease; */
}

@media screen and (max-width: 478px) {
  .pengumuman .section-title {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pengu-btn {
    position: unset;
    width: 70%;
    align-items: center;
  }
}

.pengu-btn i {
  font-size: 18px;
  position: relative;
  top: 3.5px;
  transition: all 0.1s ease;
}

.pengumuman .item-selengkapnya .selengkapnya i {
  margin: 3px 0 0 3px;
  position: absolute;
  color: var(--title-color);
  transition: all 0.2s ease;
}

.pengumuman .item-selengkapnya a:hover i {
  transform: translateX(0.25rem);
  transition: all 0.2s ease;
  color: var(--color-secondary);
}

.pengu-btn:hover i {
  transform: translateX(0.25rem);
  transition: all 0.1s ease;
}

.pengu-btn:hover {
  background: var(--button-hover) repeat scroll 0 0;
  border: 1px solid var(--border-color);
  color: #fff;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1196px) {
  .section-title h2::before {
    width: 15%;
    /* transition: all 0.3s ease; */
  }
}

.pengumuman .row {
  overflow: hidden;
}

.pengumuman .content-item {
  transition: 0.1s;
  padding: 25px;
  border-radius: 6px;
  border: 1px solid #f6f6f6;
}

.pengumuman .content-item:hover {
  box-shadow: rgba(150, 165, 149, 0.2) 0px 8px 24px;
  border: 1px solid var(--color-secondary);
}

.pengumuman .content-item:hover h2 {
  color: var(--color-secondary);
}

.pengumuman .content-item:hover .judul {
  color: var(--color-secondary);
}

.pengumuman .container .item-selengkapnya a {
  font-size: 15px;
  font-weight: 500;
  color: var(--title-color);
}

.pengumuman .container .item-selengkapnya a:hover {
  color: var(--color-secondary);
}

.pengumuman .container .item-selengkapnya {
  justify-content: center;
  align-items: center;
  display: flex;
}

.pengumuman .content-item:hover a {
  /* color: var(--title-color); */
}

/* .pengumuman .content-item:hover,
.pengumuman .content-item:hover,
.pengumuman .content-item:hover .date-type a {
  opacity: 1;
  background: var(--color-hover-pengu);
} */

.pengumuman .content-item h2 {
  color: var(--text-color-description);
  font-size: 32px;
  font-weight: 700;
  font-family: var(--font-default);
  opacity: 50%;
  transition: 0.1s;
  /* transition: all 0.3s ease; */
}

.pengumuman .card-item {
  transition: all 0.3s ease;
}

.pengumuman .card-item a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
}

.pengumuman .content-item .card-item a:hover {
  /* text-decoration: underline; */
  /* color: var(--color-secondary); */
}

.pengumuman .card-item .date-type {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.pengumuman .date-type a {
  transition: all 0.3s ease;
  font-size: 14px;
  opacity: 0;
}

.pengumuman .card-item .date-type .deskripsi i {
  padding-right: 5px;
  color: #707070;
  font-size: 14px;
}

.pengumuman .content-item .date-type .deskripsi {
  color: #707070;
  font-size: 14px;
  /* transition: all 0.3s ease; */
}

.pengumuman .content-item h4 {
  font-size: 28px;
  font-weight: 400;
  padding: 0;
  margin: 20px 0;
}

.pengumuman .content-item p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

/* START PENGUMUMAN */
.blog .entry__pengumuman {
  padding: 24px 0 14px 18px;
  border-bottom: 1px solid #eee;
  /* box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.05); */
  /* border-radius: 6px; */
  /* background: #000; */
  /* transition: all 0.3s ease; */
}

.blog .entry__pengumuman .entry-content {
  /* padding: 5px 0 0; */
  /* border: 1px solid #eee; */
  padding: 8px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  /* align-items: center; */
  /* justify-content: center; */
  /* justify-items: center; */
}

.blog .entry__pengumuman .entry-meta {
  font-size: 14px;
  font-weight: 500;
}

/* 
.blog .entry-img {
  overflow: hidden;
} */

@media screen and (max-width: 992px) {
  /* .blog .entry {
    flex-direction: column;
  }
  
  .blog .entry .entry-img img {
    max-width: 100%;
    height: auto;
  } */

  /* .blog .entry__pengumuman .entry-content .content {
    display: none;
    font-size: 15px;
  } */

  .blog .row .sidebar {
    margin: 0;
  }

  .blog .row .sidebar2 {
    margin: 0;
  }

  .blog .entry__pengumuman {
    padding: 24px 0;
  }
}

.blog .entry__pengumuman:hover {
  /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02), 0 2px 4px rgba(0, 0, 0, 0.02), 0 4px 8px rgba(0, 0, 0, 0.02), 0 8px 16px rgba(0, 0, 0, 0.02), 0 16px 32px rgba(0, 0, 0, 0.02), 0 32px 64px rgba(0, 0, 0, 0.02); */
  /* transform: translate(0, -3px); */
}

.blog .entry__pengumuman .entry-img {
  height: 120px;
  width: 120px;
  border-radius: 6px;
  /* margin: -30px -30px 20px -30px; */
}

.blog .entry__pengumuman .entry-img img {
  /* transition: all ease-in-out 0.3s; */
}

.blog .entry__pengumuman:hover .entry-img img {
  transform: scale(1.1);
}

.blog .entry__pengumuman .entry-content a {
  /* margin-bottom: 8px; */
  color: var(--text-color);
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  text-transform: none;
  text-transform: uppercase;
}

.blog .entry__pengumuman .entry-content a:hover {
  transition: all 0.3s ease;
  /* color: var(--title-color); */
  text-decoration: underline;
}

.blog .entry__pengumuman .entry-content .content p {
  color: #707070;
  /* margin-bottom: 16px; */
  margin: 0;
  font-size: 14px;
}

.blog .entry__pengumuman .entry-content .entry-meta button {
  outline: none;
  border: none;
}

.blog .entry__pengumuman .entry-content .entry-meta .btn-unduh {
  margin: 0 0 0 10px;
  /* padding: 9px 15px; */
  border-radius: 6px;
  /* background: var(--color-secondary); */
  border: 1px solid #eee;
  color: var(--color-secondary);
  font-size: 20px;
  font-weight: 600;
  border: none;
  outline: none;
  transition: all 0.2s ease-in-out;
}

.blog .entry__pengumuman .entry-content .entry-meta .btn-unduh:hover {
  background: var(--color-footer);
  color: #fff;
}

.blog .entry__pengumuman .entry-content .entry-meta .btn-bagikan {
  margin: 0 10px 0 0;
  padding: 9px 15px;
  border-radius: 6px;
  background: var(--body-color) none repeat scroll 0 0;
  color: var(--title-color);
  font-size: 14px;
  border: 1px solid var(--border-color-center);
  outline: none;
  cursor: pointer;
}

.blog .entry__pengumuman .entry-content .entry-meta .btn-bagikan:hover {
  transition: 0.3s;
  background: var(--button-hover) none repeat scroll 0 0;
  color: #fff;
}

.blog .entry__pengumuman .entry-content .entry-meta .btn_wrap {
  position: relative;
  display: flex;
  align-items: center;
  /* width: 240px; */
  /* height: 40px;  */
  /* background-color: #fff; */
  /* border-radius: 6px; */
  opacity: 0;
  /* visibility: hidden; */
  /* opacity: 0;
  pointer-events: none; */
}

.blog .entry__pengumuman .entry-content .entry-meta .bagikan:hover .btn_wrap {
  transition: all 0.3s ease-in-out;
  opacity: 1;
}

/* Show modal */
.blog .entry__pengumuman .entry-content .entry-meta .btn_wrap.show-modal {
  /* opacity: 1;
  pointer-events: auto; */
}

.blog .entry__pengumuman .entry-content .entry-meta .btn_wrap .icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  font-size: 16px;
  /* color: rgba(255, 255, 255, 0.7); */
  /* margin-right: 10px; */
  /* transition: 0.3s; */
  color: var(--color-penulis);
}

.blog .entry__pengumuman .entry-content .entry-meta .btn_wrap .icons a:hover {
  /* border: 1px solid var(--title-color); */
  transition: all 0.3s ease-in-out;
  color: #fff;
  background: var(--color-btn);
  /* border-radius: 50%; */
}

.blog .entry__pengumuman .entry-content .entry-meta .btn_wrap .icons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* height: 40px; */
  /* border: 1px solid var(--title-color); */
  /* border-radius: 6px; */
  /* border-bottom-right-radius: 6px 6px; */
  /* border-top-right-radius: 6px 6px; */
  /* border-top: 1px solid var(--title-color); */
  /* border-right: 1px solid var(--title-color); */
  /* border-bottom: 1px solid var(--title-color); */
  /* border-left: 5px solid #09f; */
}

.blog .entries .cari {
  margin-top: 10px;
  position: relative;
  height: 50px;
  max-width: 900px;
  width: 100%;
}

.blog .entries .cari i,
.blog .entries .button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.blog .entries .cari i {
  left: 15px;
  font-size: 20px;
  color: #707070;
}

.blog .entries .cari button {
  right: 15px;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  border: none;
  padding: 5px 15px;
  background: var(--color-secondary);
  border-radius: 6px;
}

.blog .entries .cari button:hover {
  transition: 0.3s;
  background: var(--color-footer);
}

.blog .entries .cari input {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  padding: 0 90px 0 45px;
  border: 1px solid #eee;
  border-radius: 6px;
  /* transition: all 0.3s ease; */
}

.blog .entries .cari input:focus {
  border-color: var(--color-secondary);
}

@media screen and (max-width: 541px) {
  .blog .entry__pengumuman .entry-content .entry-meta {
    /* flex-direction: column; */
  }

  .blog .entry__pengumuman .entry-img {
    display: none;
  }
}

@media screen and (max-width: 393px) {
  .blog .entry__pengumuman .entry-content .entry-meta .btn-unduh {
    padding: 10px;
  }

  .blog .entry__pengumuman .entry-content .entry-meta .btn-bagikan {
    padding: 10px;
  }

  .blog .entry__pengumuman .entry-content .entry-meta .btn_wrap .icons a {
    padding: 10px;
  }
}

@media screen and (max-width: 360px) {
  .blog .entry__pengumuman .entry-content .entry-meta .btn-unduh i {
    display: none;
  }

  .blog .entry__pengumuman .entry-content .entry-meta .btn-bagikan i {
    display: none;
  }
}

/* END PENGUMUMAN */

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #555555;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
  border-radius: 10px;
}

.blog .blog-pagination li a {
  color: var(--color-default);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-secondary);
  color: var(--font-white);
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: var(--color-white);
}

/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
}

.blog .posts-list article:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  /* border: 1px solid var(--color-secondary); */
}

.blog .posts-list .post-img {
  /* max-width: 100%; */
  /* max-height: 240px; */
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog .posts-list .post-img img {
  /* width: 190px;
  height: 266; */
}

.blog .posts-list .post-category {
  font-size: 16px;
  color: #555555;
  margin-bottom: 10px;
}

.blog .posts-list .title {
  font-size: 22px;
  font-weight: 700;
  padding: 0;
  margin: 0;
}

.blog .posts-list .title a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
  color: var(--color-secondary-hover);
}

.blog .posts-list .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog .posts-list .post-author-list {
  font-weight: 500;
  margin-bottom: 5px;
}

.blog .posts-list .post-date {
  font-size: 14px;
  color: #3c3c3c;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-default);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(34, 34, 34, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li + li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(34, 34, 34, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #555555;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(34, 34, 34, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li + li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-default);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(34, 34, 34, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-default);
}

.blog .sidebar .sidebar-item + .sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: var(--font-secondary);
  border: 1px solid rgba(34, 34, 34, 0.3);
  padding: 5px 10px;
  position: relative;
  border-radius: 50px;
}

.blog .sidebar .search-form form input[type="text"] {
  border: 0;
  padding: 4px;
  border-radius: 50px;
  width: calc(100% - 60px);
}

.blog .sidebar .search-form form input[type="text"]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 25px;
  margin: -1px;
  background: var(--color-primary);
  color: var(--font-secondary);
  transition: 0.3s;
  border-radius: 50px;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(0, 131, 116, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-primary);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(34, 34, 34, 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #555555;
  font-size: 14px;
  padding: 6px 20px;
  margin: 0 6px 8px 0;
  border: 1px solid #d5d5d5;
  display: inline-block;
  transition: 0.3s;
  border-radius: 50px;
}

.blog .sidebar .tags ul a:hover {
  color: var(--font-secondary);
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(85, 85, 85, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 50px;
  padding: 14px 40px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(248, 90, 64, 0.8);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: var(--color-footer);
  padding: 50px 0 10px 0;
  color: white;
}

.footer .container .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: bold;
  font-family: "Montserrat Alternates", sans-serif;
}

.footer .container .logo h1 span {
  color: var(--color-btn-home);
}

.footer .container .logo h1 a,
.footer .container .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-info img {
  max-width: 70%;
  margin-bottom: 20px;
}

.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--font-secondary);
  font-family: var(--font-primary);
}

.footer .footer-info p {
  font-size: 14px;
  font-family: var(--font-primary);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--font-secondary);
  border-color: var(--font-secondary);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links .list-group li {
  background: none;
  color: #eee;
  border: 1px solid #eee;
  padding: 8px 16px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.footer .footer-links .list-group .badge {
  background: var(--color-secondary);
}

@media screen and (max-width: 981px) {
  .footer .col-lg-3 {
    width: 100%;
  }
}

.footer .footer-links ul i {
  padding-right: 2px;
  color: rgba(0, 131, 116, 0.8);
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-weight: 500;
}

/* .footer .footer-links ul li:first-child {
  padding-top: 0;
} */

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1.6;
}

.footer .footer-links ul a:hover {
  color: var(--font-secondary);
  text-decoration: underline;
}

.footer .footer-contact p {
  line-height: 26px;
}

.footer .copyright {
  border-top: 1px solid #c7c7c7;
  text-align: center;
  padding: 12px;
}

.footer .copyright a {
  color: #eeeeee;
}

.footer .copyright a:hover {
  text-decoration: underline;
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: var(--font-secondary);
}

/*--------------------------------------------------------------
# galeri
--------------------------------------------------------------*/
#galeri {
  padding: 60px 0;
}

#galeri .galeri-item {
  border-radius: 6px;
}

.pst-content {
  padding-left: 10px;
}

#galeri-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#galeri-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 8px 24px;
  font-size: 12px;
  line-height: 20px;
  color: #555;
  border-radius: 50px;
  text-transform: uppercase;
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border: 1px solid #444;
}

#galeri-flters li:hover,
#galeri-flters li.filter-active {
  border-color: #3ec1d5;
  background: #3ec1d5;
  color: #fff;
}

#galeri-flters li:last-child {
  margin-right: 0;
}

.single-awesome-galeri {
  float: left;
  overflow: hidden;
  padding: 15px;
  width: 25%;
  position: relative;
}

.single-awesome-project {
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 6px;
}

.first-item {
  margin-bottom: 30px;
}

.awesome-img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.awesome-img > a {
  display: block;
  position: relative;
}

.single-awesome-project:hover .awesome-img > a::after {
  opacity: 1;
}

.single-awesome-project:hover .add-actions {
  opacity: 1;
  bottom: 0;
}

.awesome-img > a::after {
  background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  opacity: 0;
  transition: 0.4s;
}

.add-actions {
  background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0;
  bottom: 30px;
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: hidden;
  padding: 10px 15px;
  position: absolute;
  transition: all 0.4s ease 0s;
  width: 100%;
}

.project-dec {
  display: block;
  height: 100%;
  width: 100%;
}

.project-dec a {
  display: block;
  height: 100%;
  width: 100%;
}

.project-dec h4 {
  margin-bottom: 5px;
}

.project-dec h4:hover {
  color: #fff;
}

.project-dec h4 {
  color: #ddd;
  font-size: 24px;
  margin-top: -45px;
  padding-top: 50%;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
}

.project-dec span {
  color: #ddd;
  font-size: 13px;
}

.project-action-btn {
  display: block;
  height: 100%;
  text-align: center;
  transition: all 1s ease 0s;
  width: 100%;
}

.project-action-btn li {
  display: block;
  height: 100%;
  width: 100%;
}

.project-action-btn li a {
  display: block;
  height: 100%;
  width: 100%;
}

/* galeri 2 */
#galeri .card {
  border: none;
  outline: none;
}

#galeri .card img {
  border-radius: 6px;
  outline: none;
  position: relative;
}

#galeri .card .title {
  border-radius: 6px;
  font-size: 14px;
  color: var(--font-white);
  padding: 24px;
  width: 100%;
  background: linear-gradient(180deg, transparent, #000);
  border-image: fill 0 linear-gradient(#0001, #000);
}

#galeri .card .title p {
  font-weight: 600;
  font-size: 24px;
  color: var(--font-white);
}

#galeri .galeri-kanan img {
  width: 80px;
  height: 70px;
  max-width: unset;
  /* height: 100%; */
  object-fit: cover;
  border-radius: 6px;
}

/* #galeri .galeri-kanan a {
  display: flex;
  align-items: center;
  justify-content: center;
} */

#galeri .galeri-kanan .title {
  font-size: 14px;
  font-weight: 600;
}

#galeri .galeri-kanan .penulis {
  font-size: 14px;
}

#galeri .galeri-kanan .card_right {
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #e6e6e6;
}

#galeri .galeri-kanan .card_right:hover {
  border: 1px solid var(--color-secondary);
  /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02), 0 2px 4px rgba(0, 0, 0, 0.02),
    0 4px 8px rgba(0, 0, 0, 0.02), 0 8px 16px rgba(0, 0, 0, 0.02),
    0 16px 32px rgba(0, 0, 0, 0.02), 0 32px 64px rgba(0, 0, 0, 0.02); */
}

/* #galeri .galeri-kanan .card_right:hover a {
  color: var(--font-white);
} */

/* #galeri .galeri-kanan .card_right:hover span {
  color: var(--font-white);
} */

/*--------------------------------------------------------------
# link-terkait Section
--------------------------------------------------------------*/
.link-terkait {
  padding: 40px 0;
}

.link-terkait .swiper {
  padding: 10px 0;
}

.link-terkait .swiper-slide img {
  transition: 0.3s;
}

.link-terkait .swiper-slide img:hover {
  transform: scale(1.1);
}

.link-terkait .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.link-terkait .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.link-terkait .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact .contact-inner {
  margin: 130px 0 30px 0;
}

.contact-area {
  height: auto;
  width: 100%;
}

.contact-content {
  padding: 100px;
  background: #000 none repeat scroll 0 0;
}

.contact-content-right {
  padding: 100px;
}

.single-icon {
  border-radius: 6px;
  padding: 12px;
  background: #f9f9f9;
}

.single-icon i {
  font-size: 32px;
  width: 50px;
  height: 50px;
  line-height: 56px;
  border-radius: 50%;
  margin-bottom: 30px;
  color: var(--color-secondary);
}

.single-icon p {
  margin: 0;
  font-size: 16px;
  line-height: 30px;
}

.contact-icon {
  margin-bottom: 12px;
}

#google-map {
  height: 370px;
  margin-bottom: 20px;
}

.php-email-form .validate {
  display: none;
  color: red;
  margin: 0;
  font-weight: 400;
  font-size: 13px;
}

.php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #fff;
  background: var(--color-secondary);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.php-email-form input,
.php-email-form textarea {
  box-shadow: none;
  font-size: 14px;
}

.php-email-form .form-group input:focus,
.php-email-form .form-group textarea:focus {
  border-color: var(--color-secondary);
  box-shadow: none;
}

.php-email-form input {
  border-radius: 6px;
  padding: 10px 15px;
}

.php-email-form textarea {
  border-radius: 6px;
  padding: 12px 15px;
}

.php-email-form button[type="submit"] {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 1px solid #ccc;
  color: #444;
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  padding: 12px 30px;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  border-radius: 30px;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#blog .card {
  border: none;
}

#blog .card-body {
  background: #fafafa;
  border: 1px solid #eee;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

#blog .card-body .card-date {
  font-size: 14px;
  font-weight: 500;
}

#blog .card-body .card-title {
  font-size: 20px;
  font-weight: 500;
}

#blog .card-body .card-title:hover {
  color: var(--color-secondary);
}

#blog .card-body .card-text {
  font-size: 15px;
  font-weight: 500;
}

#blog .card-body-bsr {
  border-radius: 6px;
  transition: all 0.3s;
  /* box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1); */
}

#blog .card-body-bsr img {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

#blog .card-body-bsr:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

#blog .card .btn {
  background: var(--color-secondary);
  color: var(--font-white);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 33px 6px 10px;
  text-decoration: none;
  /* text-transform: uppercase; */
  border-radius: 6px;
  /* transition: all 0.3s ease; */
}

#blog .card .btn:hover {
  background: var(--color-footer);
}

#blog .card-body i {
  position: absolute;
  margin-top: 4px;
  margin-left: 5px;
  line-height: 0;
  font-size: 16px;
  font-weight: 800;
  transition: all 0.2s ease;
}

#blog .card-body a:hover i {
  transform: translateX(0.25rem);
}

.post-box {
  border-radius: 6px;
  transition: all 0.3s;
}

.post-box .post-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.post-box .content {
  /* padding: 12px; */
}

.post-box .content .post-date {
  font-size: 14px;
}

.post-box .content .post-title {
  font-size: 22px;
  font-weight: 600;
}

.post-box .readmore {
  background: #fff;
  border: 1px solid #eee;
  font-size: 14px;
  font-weight: 500;
  padding: 12px;
  text-decoration: none;
  /* text-transform: uppercase; */
  border-radius: 6px;
  /* transition: all 0.3s ease; */
}

.post-box .readmore2 {
  /* background: #eee; */
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 12px;
  text-decoration: none;
  /* text-transform: uppercase; */
  border-radius: 6px;
  /* transition: all 0.3s ease; */
}

.post-box .readmore a {
  color: var(--color-secondary);
}

.post-box .readmore2 a {
  color: var(--color-secondary);
}

.post-box .readmore i {
  position: absolute;
  margin-top: 4px;
  margin-left: 5px;
  line-height: 0;
  font-size: 16px;
  font-weight: 800;
  transition: all 0.2s ease;
}

.post-box .readmore2 i {
  position: absolute;
  margin-top: 4px;
  margin-left: 5px;
  line-height: 0;
  font-size: 16px;
  font-weight: 800;
  transition: all 0.2s ease;
}

.post-box .readmore a:hover i {
  transform: translateX(0.25rem);
}

/* GALERI DETAIL */
#galeri_detail {
  margin-top: 70px;
}

#galeri_detail .content {
  padding: 0 75px;
}

@media screen and (max-width: 1224px) {
  #galeri_detail .content {
    padding: unset;
  }

  #galeri_detail {
    margin-top: 30px;
  }
}

#galeri_detail .container h2 {
  font-size: 22px;
  font-weight: 550;
}

#galeri_detail .container .content .date {
  padding: 12px 0;
}

#galeri_detail .container .content .date span {
  font-size: 16px;
  font-weight: 530;
  color: #707070;
}

#galeri_detail .container .content img {
  border-radius: 6px;
}

#galeri_detail .container .content-footer .img img {
  cursor: pointer;
  border-radius: 6px;
  height: 70px;
  width: 90px;
}

#galeri_detail .container .footer_end {
  padding: 14px 0;
  margin: 36px 0;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
}

#galeri_detail .container .footer_end .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
  font-size: 15px;
  color: var(--color-secondary);
  transition: all 0.3s ease;
}

#galeri_detail .container .footer_end .social-links a:hover {
  color: var(--color-secondary-hover);
}

/*--------------------------------------------------------------
# info grafis
--------------------------------------------------------------*/
.info-grafis {
  padding: 40px 0;
}

.info-grafis .swiper {
  padding: 10px 0;
}

.info-grafis .swiper-slide img {
  border-radius: 6px;
  /* height: 90px; */
  transition: 0.3s;
}

.info-grafis .swiper-slide img:hover {
  transform: scale(1.1);
}

.info-grafis .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.info-grafis .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--font-secondary);
  opacity: 1;
  background-color: #ddd;
}

.info-grafis .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Infografis
--------------------------------------------------------------*/
.infografis .posts-list article {
  padding: 30px 15px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
}

.infografis .posts-list article:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  /* border: 1px solid var(--color-secondary); */
}

.infografis .posts-list .post-img {
  /* max-width: 100%; */
  /* max-height: 240px; */
  margin: -30px -15px 15px -15px;
  overflow: hidden;
}

.infografis .posts-list .post-img img {
  /* max-width: 90px; */
  /* width: 190px;
  height: 266; */
}

.infografis .posts-list .post-category {
  font-size: 15px;
  font-weight: 400;
  color: #555555;
  margin-bottom: 10px;
}

.infografis .posts-list .title {
  font-size: 22px;
  font-weight: 700;
  padding: 0;
  margin: 0;
}

.infografis .posts-list .title a {
  color: var(--color-default);
  transition: 0.3s;
}

.infografis .posts-list .title a:hover {
  color: var(--color-secondary-hover);
}

.infografis .posts-list .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.infografis .posts-list .post-author-list {
  font-weight: 500;
  margin-bottom: 5px;
}

.infografis .posts-list .post-date {
  font-size: 14px;
  color: #3c3c3c;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# infografis Details
--------------------------------------------------------------*/
/* infografis_detail */
#infografis_detail {
  margin-top: 70px;
}

#infografis_detail .content {
  padding: 0 75px;
}

#infografis_detail .content .unduh a {
  font-weight: 600;
  padding: 8px 16px;
  border: 1px solid #eee;
  border-radius: 6px;
}

#infografis_detail .content .unduh a:hover {
  border: 1px solid var(--color-secondary);
}

#infografis_detail .content .unduh i {
  font-weight: 600;
  margin-right: 5px;
}

@media screen and (max-width: 1224px) {
  #infografis_detail .content {
    padding: unset;
  }

  #infografis_detail {
    margin-top: 30px;
  }
}

#infografis_detail .container h2 {
  font-size: 22px;
  font-weight: 550;
}

#infografis_detail .container .content .date {
  padding: 12px 0;
}

#infografis_detail .container .content .date span {
  font-size: 16px;
  font-weight: 530;
  color: #707070;
}

#infografis_detail .container .content img {
  border-radius: 6px;
  max-height: 500px;
  /* height: 100px; */
  /* width: 100px; */
}

#infografis_detail .container .footer_end {
  padding: 14px 0;
  margin: 36px 0;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
}

#infografis_detail .container .footer_end .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
  font-size: 15px;
  color: var(--color-secondary);
  transition: all 0.3s ease;
}

#infografis_detail .container .footer_end .social-links a:hover {
  color: var(--color-secondary-hover);
}

/* Infografis pagination */

.infografis .infografis-pagination {
  margin-top: 30px;
  color: #555555;
}

.infografis .infografis-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.infografis .infografis-pagination li {
  margin: 0 5px;
  transition: 0.3s;
  border-radius: 10px;
}

.infografis .infografis-pagination li a {
  color: var(--color-default);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.infografis .infografis-pagination li.active,
.infografis .infografis-pagination li:hover {
  background: var(--color-secondary);
  color: var(--font-white);
}

.infografis .infografis-pagination li.active a,
.infografis .infografis-pagination li:hover a {
  color: var(--color-white);
}

/* Artikel Beranda */
.artikel {
  /* background: #000; */
}

.artikel img {
  border-radius: 10px;
}

.artikel .right {
  row-gap: 20px;
}

.artikel .content {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  background: linear-gradient(1turn, #000, #3330 70%);
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.08));
  height: 100%;
  z-index: 100;
  width: 100%;
  border-radius: 10px;
  font-size: 14px;
  color: var(--font-white);
  /* background: linear-gradient(180deg, transparent, #000); */
}

.artikel .content .title {
  padding: 24px;
  color: var(--font-white);
}

.artikel .content .title a {
  color: var(--font-white);
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.artikel .content .title a:hover {
  color: #e0e0e0;
}

.artikel .content .post-date {
  margin: 10px 0 0;
}

/* form permintaan informasi */
.permintaan_informasi .title {
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 14px;
}

.permintaan_informasi .form_permintaan span {
  color: red;
}

.permintaan_informasi .form_permintaan label,
.permintaan_informasi .form_permintaan input,
.permintaan_informasi .form_permintaan textarea {
  font-size: 14px;
}

.permintaan_informasi .form_permintaan input:focus,
.permintaan_informasi .form_permintaan textarea:focus {
  border: 1px solid var(--color-secondary);
  outline: none;
  box-shadow: none;
}

.permintaan_informasi .form_permintaan input::placeholder {
  font-size: 14px;
}

.permintaan_informasi .form_permintaan .btn {
  background-color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-family: "Akzidenz Grotesk BQ Medium", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  outline: 0;
  /* padding: 10px 55px 10px 35px; */
  padding: 6px 12px;
  text-align: center;
  transform: translateY(0);
  transition: transform 150ms, box-shadow 150ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

/* .permintaan_informasi .item-1 .form-group {
  margin-bottom: 16px;
  position: relative;
}

.permintaan_informasi .item-1 input {
  position: relative;
  display: block;
  width: 100%;
  border: 1px solid var(--color-secondary);
  border-radius: 4px;
  background-color: transparent;
  margin: 0px auto;
  padding: 6px 4px 4px 14px;
  height: 40px;
  outline: none !important;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  transition: all .2s ease-in-out;
}

.permintaan_informasi .item-1 label {
  position: absolute;
  top: 10px;
  left: 12px;
  text-align: left;
  display: inline-block;
  padding: 0 4px;
  height: 14px;
  line-height: 14px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-secondary);
  margin: 0px auto;
  cursor: text;
  transition: all .15s ease-in-out;
}

.permintaan_informasi .item-1 .label2 label {
  position: absolute;
  top: 10px;
  left: 12px;
  text-align: left;
  display: inline-block;
  padding: 0 4px;
  height: 14px;
  line-height: 14px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-secondary);
  margin: 0px auto;
  cursor: text;
  transition: all .15s ease-in-out;
  background: #000;
}

.permintaan_informasi .item-1 input:hover,
.permintaan_informasi .item-1 input:focus {
  box-shadow: none;
}

.permintaan_informasi .item-1 input:valid+label,
.permintaan_informasi .item-1 input:focus+label {
  top: -6px;
  color: var(--color-secondary);
  background: #fff;
  font-weight: bold;
}

.permintaan_informasi .item-1 .gl-form-asterisk {
  background-color: inherit;
  color: #e32b2b;
  padding: 0;
  padding-left: 3px;

}

.permintaan_informasi .item-1 .gl-form-asterisk:after {
  content: "*";
}


.permintaan_informasi .item-1 .button-65 {
  appearance: none;
  backface-visibility: hidden;
  background-color: var(--color-secondary);
  border-radius: 10px;
  border-style: none;
  box-shadow: none;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: Inter, -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  height: 40px;
  letter-spacing: normal;
  line-height: 0;
  outline: none;
  overflow: hidden;
  position: relative;
  text-align: center;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: top;
  white-space: nowrap;
}

.permintaan_informasi .item-1 .button-65:hover {
  background-color: var(--color-footer);
  box-shadow: rgba(0, 0, 0, .05) 0 5px 30px, rgba(0, 0, 0, .05) 0 1px 4px;
  opacity: 1;
  transform: translateY(0);
  transition-duration: .35s;
}

.permintaan_informasi .item-1 .button-65:hover:after {
  opacity: .5;
}

.permintaan_informasi .item-1 .button-65:active {
  box-shadow: rgba(0, 0, 0, .1) 0 3px 6px 0, rgba(0, 0, 0, .1) 0 0 10px 0, rgba(0, 0, 0, .1) 0 1px 4px -1px;
  transform: translateY(2px);
  transition-duration: .35s;
}

.permintaan_informasi .item-1 .button-65:active:after {
  opacity: 1;
}

@media (min-width: 768px) {
  .permintaan_informasi .item-1 .button-65 {
    padding: 14px 22px;
    width: 176px;
  }
} */
