:root {
    /* Fonts family */
    --font-mona: "Mona Sans", sans-serif;
    --font-poppins: "Poppins", sans-serif;
    --font-releway: "releway", sans-serif;
    --font-open: "Open Sans", sans-serif;
    --hue-color: 200;

    /*========== Font weight ==========*/
    --font-regular-weight: 400;
    --font-medium-weight: 500;
    --font-semi-bold-weight: 600;
    --font-bold-weight: 700;

    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "Syne", sans-serif;
    --font-small-font: 22px;
    --font-medium-font: 26px;
    --font-large-font: 28px;
    --h2-font-size: 1.25rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;

    /* color */
    --scroll-bar-color: hsl(var(--hue-color), 12%, 48%);
    --scroll-thumb-color: hsl(var(--hue-color), 12%, 36%);
    --color-primary: #2c4964;
    --color-primary-hover: #2c4964;
    --color-section: #f1f7fd;
    --color-section-2: #ffedeb;
    --color-secondary: #1a2a46;
    --color-secondary-hover: #1c2e4a;
    --tertiary-color-soft: rgba(232, 69, 69, 0.05);
    --tertiary-color: #e65b48;
    --tertiary-color-hover: #c04c3d;
    --font-color-default: #444;
    --font-grey: rgba(255, 255, 255, 0.6);
    --font-white-secondary: #f9f4f4;
    --font-white-primary: #f5f5fa;
    --font-black-primary: #101014;
    --font-black-secondary: #1f1f29;
    --font-black-title: #333132;
    --font-black-content: #5c5757;
    --font-black-content2: #222;
    --title-color: hsl(230, 75%, 15%);
    --text-color: hsl(230, 12%, 40%);
    --container-color: hsl(0, 0%, 99%);
    --border-color: hsl(230, 25%, 80%);
    --border-color-soft: #f1f1f1;
    --btn-color: #e65b48;
    --btn-color-hover: #c04c3d;

    /*========== border ==========*/
    --border-radius: 15px;
    --color-sidebar: #f9fafd;
    --border-color-sidebar: #e7e7ec;

    /*========== box shadow ==========*/
    --box-shadow: rgba(0, 0, 0, 0.25) 0px 10px 30px -20px;
    --box-shadow-2: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    /*========== z index ==========*/
    --z-fixed: 100;
    --z-modal: 1000;
}

/* Scrollbar */

::-webkit-scrollbar {
    width: 0.6rem;
    border-radius: 0.1rem;
    /* background-color: var(--scroll-bar-color); */
    background-color: #cacaca;
}

::-webkit-scrollbar-thumb {
    background-color: rgb(139, 139, 139);
    border-radius: 0.1rem;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgb(129, 129, 129);
    /* background-color: hsl(207, 4%, 55%); */
}

/* End Scrollbar */

/*--------------------------------------------------------------
  # General
  --------------------------------------------------------------*/
body {
    font-family: "Monrope", sans-serif;
    /* letter-spacing: 1px; */
    scroll-behavior: smooth;
    color: #444444;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    color: var(--tertiary-color-hover);
    text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Monrope", sans-serif;
}

input,
button {
    border: none;
    outline: none;
}

/*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--color-secondary);
    border-top-color: #d1e6f9;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

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

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

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

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

.back-to-top:hover {
    background: var(--tertiary-color-hover);
    color: #fff;
}

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

.datepicker-dropdown {
    padding: 20px !important;
}

/*--------------------------------------------------------------
  # Top Bar
  --------------------------------------------------------------*/
#topbar {
    background: #fff;
    height: 70px;
    font-size: 14px;
    transition: all 0.3s ease;
    z-index: 996;
    /* border-bottom: 1px solid #eee; */
}

#topbar.topbar-scrolled {
    top: -40px;
}

#topbar img {
    max-width: 350px;
}

#topbar .contact-info a {
    line-height: 1;
    color: #444444;
    transition: 0.3s;
}

#topbar .contact-info a:hover {
    color: #1977cc;
}

#topbar .contact-info i {
    color: #437099;
    padding-right: 4px;
    margin-left: 15px;
    line-height: 0;
}

#topbar .contact-info i:first-child {
    margin-left: 0;
}

#topbar .social-links a {
    color: #437099;
    padding-left: 15px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
}

#topbar .social-links a:hover {
    color: var(--tertiary-color);
}

#topbar .social-links a:first-child {
    border-left: 0;
}

@media screen and (max-width: 991px) {
    #topbar img {
        max-width: 200px;
        /* display: none; */
    }
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
    padding: 10px 0;
    transition: all 0.3s ease;
    z-index: 997;
    background: var(--color-secondary);
    padding: 5px 0;
    top: 70px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.06);
    /* box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1); */
}

#header.header-scrolled {
    top: 0;
}

/* #header.fixed-top {
    padding: 5px 0;
    background: var(--color-secondary);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.06);
  } */

#header .logo i {
    font-size: 20px;
    cursor: pointer;
    color: var(--font-white-primary);
}

/* .scrolled-offset {
    margin-top: 70px;
    background: #000;
  } */

@media screen and (max-width: 984px) {
    #header .logo {
        margin-right: auto;
    }
}

#header .logo a {
    color: #2c4964;
}

#header .logo img {
    max-height: 40px;
}

/**
  * Appointment Button *
  */
.appointment-btn {
    margin-left: 25px;
    background: var(--btn-color);
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
    cursor: pointer;
}

.appointment-btn:hover {
    background: var(--btn-color-hover);
    color: #fff;
}

@media (max-width: 768px) {
    .appointment-btn {
        margin: 0 15px 0 0;
        padding: 6px 18px;
    }
}

/* SEARCH NAVBAR */

#search,
.login {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-modal);
    background-color: hsla(230, 75%, 15%, 0.1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    /* For safari */
    padding: 8rem 1.5rem 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.search__close,
.login__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    color: var(--font-white-primary);
    cursor: pointer;
}

/*=============== SEARCH ===============*/
#search .search__form {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    background-color: var(--container-color);
    box-shadow: 0 8px 32px hsla(230, 75%, 15%, 0.2);
    padding-inline: 1rem;
    border-radius: 0.5rem;
    transform: translateY(-1rem);
    transition: transform 0.4s;
}

#search .search__icon {
    font-size: 1.25rem;
    color: var(--title-color);
}

#search .search__input {
    width: 100%;
    padding-block: 1rem;
    background-color: var(--container-color);
    color: var(--text-color);
    border: none;
    outline: none;
}

#search .search__input::placeholder {
    color: var(--text-color);
}

/* Search show */
#search.show-search {
    opacity: 1;
    pointer-events: initial;
}

#search.show-search .search__form {
    transform: translateY(0);
}

/*=============== LOGIN ===============*/
.login__form,
.login__group {
    display: grid;
}

.login__form {
    background-color: var(--container-color);
    padding: 2rem 1.5rem 2.5rem;
    box-shadow: 0 8px 32px hsla(230, 75%, 15%, 0.2);
    border-radius: 1rem;
    row-gap: 1.25rem;
    text-align: center;
    transform: translateY(-1rem);
    transition: transform 0.4s;
}

.login__title {
    font-size: var(--h2-font-size);
    color: var(--title-color);
}

.login__group {
    row-gap: 1rem;
}

.login__label {
    display: block;
    text-align: initial;
    color: var(--title-color);
    font-weight: var(--font-medium-weight);
    margin-bottom: 0.25rem;
}

.login__input {
    width: 100%;
    background-color: var(--container-color);
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: 0.5rem;
    color: var(--text-color);
    font-size: 14px;
}

.login__input:focus {
    border-color: var(--btn-color);
}

.login__input::placeholder {
    color: var(--text-color);
}

.login__signup {
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.login__signup a {
    text-decoration: none;
    color: var(--btn-color);
}

.login__signup a:hover {
    text-decoration: underline;
}

.login__forgot {
    font-size: 14px !important;
    text-decoration: none;
    display: inline-block;
    color: var(--btn-color);
    margin-bottom: 1.25rem;
}

.login__button {
    display: inline-block;
    background-color: var(--btn-color);
    width: 100%;
    color: var(--font-white-primary);
    font-weight: var(--font-medium-weight);
    /* padding: 1rem; */
    padding: 10px;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: box-shadow 0.4s;
    letter-spacing: 1px;
}

.login__button:hover {
    box-shadow: 0 4px 24px hsla(230, 75%, 40%, 0.4);
    color: var(--font-white-primary);
    text-decoration: none;
}

/* SHOW LOGIN */
.show-login {
    opacity: 1;
    pointer-events: initial;
    /* overflow: auto; */
}

.show-login .login__form {
    transform: translateY(0);
}

/*=============== BREAKPOINTS ===============*/
/* For medium devices */
@media screen and (min-width: 576px) {
    #search,
    .login {
        padding-top: 10rem;
    }

    .search__form {
        max-width: 450px;
        margin-inline: auto;
    }

    #search .search__close,
    .login__close {
        width: max-content;
        top: 4rem;
        left: 0;
        right: 0;
        margin-inline: auto;
        font-size: 1.5rem;
    }

    .login__form {
        max-width: 400px;
        margin-inline: auto;
    }
}

/* For large devices */
@media screen and (min-width: 1023px) {
    .login__form {
        /* padding: 3rem 2rem 3.5rem; */
    }
}

@media screen and (min-width: 1150px) {
    .container {
        margin-inline: auto;
    }
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/**
  * Desktop Navigation 
  */
.navbar {
    font-family: "Open Sans", sans-serif;
    padding: 0;
}

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

.navbar li {
    position: relative;
}

.navbar > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 8px 0 8px 20px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    padding: 5px 2px;
    text-decoration: none;
}

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

.navbar .dropdown:hover i {
    transform: rotate(180deg);
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: rgb(247, 247, 247);
}

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

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

.navbar .dropdown ul a {
    padding: 10px 20px;
    border-radius: 6px;
    margin: 0 10px;
    font-size: 14px;
    font-weight: 550;
    text-transform: none;
    color: #082744;
    border: none;
}

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

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

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 115%;
    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: var(--font-white-primary);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@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(28, 47, 65, 0.9);
    transition: 0.3s;
    z-index: 999;
}

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

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

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

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: var(--font-medium-weight);
    color: var(--color-primary);
    border: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: var(--tertiary-color-hover);
}

.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 {
    background-color: var(--color-section);
    color: var(--color-primary);
}

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

/*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f1f7fd;
}

.section-bg-2 {
    background-color: #ffedeb;
}

.section-title {
    text-align: start;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
    /* padding-bottom: 20px; */
    position: relative;
    color: #2c4964;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: var(--tertiary-color);
    bottom: 0;
    /* margin: auto; */
}

.section-title-galeri h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    /* padding-bottom: 20px; */
    position: relative;
    color: #2c4964;
}

.section-title-galeri h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 90px;
    height: 3px;
    background: var(--tertiary-color);
    bottom: 0;
    left: calc(50% - 60px);
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
.breadcrumbs {
    font-family: "Inter", sans-serif;
    padding: 20px 30px;
    background-color: var(--color-sidebar);
    min-height: 40px;
    margin-top: 200px;
}

.breadcrumbs a {
    text-decoration: none;
    color: var(--color-primary);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 130px;
        padding: 20px 0;
    }
}

.breadcrumbs h2 {
    font-size: 23.04px;
    font-weight: 600;
    color: var(--font-color-default);
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
  # profil-wilayah
  --------------------------------------------------------------*/
.profil-wilayah {
    padding: 30px 0 60px;
}

.profil-wilayah img {
    border-radius: 15px;
}

.profil-wilayah .head-title {
    padding: 20px 0;
    font-size: 15px;
    font-weight: 400;
}

.profil-wilayah .head-title .date .date-content,
.creator-content {
    /* color: var(--color-primary);
    background: var(--color-section);
    border-radius: 15px;
    padding: 5px 15px; */
    font-family: "I nter", sans-serif;
    color: var(--font-black-content2);
    font-weight: 500;
    line-height: 1.6;
}

.profil-wilayah .head-title i {
    margin-right: 9px;
}

.profil-wilayah .head-title .bx-user {
    margin-right: 5px;
    top: 1px;
    position: relative;
    font-size: 18px;
}

/*--------------------------------------------------------------
  # Blog Details
  --------------------------------------------------------------*/
/* .blog {
    padding: 60px 30px;
  }
  
  @media (max-width:767px) {
    .blog {
      padding: 60px 0;
    } */

.blog a {
    text-decoration: none;
}

.blog .blog-details .meta-top ul {
    display: unset;
    flex-wrap: unset;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog .blog-details .meta-top ul li + li {
    padding-left: 10px;
}

.blog .blog-details {
    /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); */
    /* padding: 30px; */
    border-radius: 10px;
}

.blog .blog-details .post-img img {
    border-radius: 15px;
    width: 100%;
    height: auto;
}

.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 {
    text-align: justify;
    margin-top: 20px;
}

.blog .blog-details .content p img {
    border-radius: var(--border-radius);
    width: 100% !important;
    height: auto !important;
}

.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 .share {
    /* border-top: 1px solid #eee; */
    /* border-bottom: 1px solid #eee; */
    margin: 50px 0;
    padding: 15px 0;
}

.blog .blog-details .social-links a {
    font-size: 14px;
    /* display: inline-block; */
    /* border: 1px solid var(--font-black-content); */
    color: var(--font-black-content);
    line-height: 1;
    padding: 5px;
    margin-right: 15px;
    border-radius: 50%;
    transition: 0.3s;
}

.blog .blog-details .social-links a:hover {
    /* background: var(--btn-color-hover); */
    color: var(--btn-color);
}

.blog .blog-details .meta-top {
    margin: 20px 0;
    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 {
    color: #6c757d;
    font-size: 14px;
    /* display: inline-block; */
    line-height: 1;
}

.blog .blog-details .meta-top .category a {
    display: flex;
    align-items: center;
}

.blog .blog-details .meta-top .category:hover a,
.blog .blog-details .meta-top .category:hover i {
    color: var(--tertiary-color);
}

.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 Comments
  --------------------------------------------------------------*/
.blog .comments {
    margin-top: 30px;
}

.blog .comment .meta-comment {
    font-size: 14px;
    margin: 5px 0 7px;
}

.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 i {
    color: var(--color-secondary);
    font-size: 22px;
    padding: 10px;
    background: var(--color-section);
    border-radius: 50%;
}

.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: var(--box-shadow);
    /* box-shadow: 0 0 16px rgba(0, 0, 0, 0.1); */
    border: 1px solid var(--border-color-soft);
    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: var(--btn-color);
}

.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: var(--btn-color);
}

.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(--btn-color);
}

.blog .comments .reply-form .btn-primary:hover {
    background-color: var(--btn-color-hover);
}

/*--------------------------------------------------------------
  # Blog Sidebar
  --------------------------------------------------------------*/
.blog .blog-sidebar {
    border-radius: 7px;
    /* padding: 0 24px 30px; */
    /* background-color: var(--border-color-soft); */
}

.blog .sidebar {
    /* padding: 24px; */
    margin: 0 0 0 20px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.03);
    background: var(--color-sidebar);
    /* padding: 30px; */
    /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); */
    border-radius: 10px;
    background-color: #f9fafd;
}

@media (max-width: 978px) {
    .blog .sidebar {
        margin: 12px;
    }
}

/*=============== LOGIN LAYANAN_MANDIRI_SIDEBAR ===============*/
.blog .login__form_sidebar,
.blog .login__group {
    display: grid;
}

.blog .login__form_sidebar {
    /* margin: 0 0 50px; */
    /* border-radius: 1rem; */
    row-gap: 1.25rem;
    text-align: center;
    transition: transform 0.4s;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color-soft);
}

.blog .login__title {
    font-size: 18px;
    font-weight: var(--font-bold-weight);
    color: var(--title-color);
    text-align: start;
    margin-bottom: 40px;
}

.blog .login__group {
    row-gap: 1rem;
}

.blog .login__label {
    display: block;
    text-align: initial;
    color: var(--title-color);
    font-size: 14px;
    font-weight: var(--font-medium-weight);
    margin-bottom: 0.25rem;
}

.blog .login__group i {
    position: absolute;
    /* top: 50%; */
    transform: translateY(25%);
    color: #999;
    font-size: 20px;
}

.blog .login__group i.icon {
    left: 15px;
}

.blog .login__group i.showHidePw {
    right: 0;
    cursor: pointer;
    padding: 0 10px;
}

.blog .login__input {
    width: 100%;
    border: 1px solid var(--border-color);
    padding: 10px 50px;
    border-radius: 0.5rem;
    color: var(--text-color);
    font-size: 14px;
    font-weight: var(--font-medium-weight);
}

.blog .login__input:focus {
    border-color: var(--btn-color);
}

.blog .login__input:focus ~ i {
    color: var(--btn-color);
}

.blog .login__input::placeholder {
    color: var(--text-color);
}

.blog .login__signup {
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.blog .login__signup a {
    color: var(--btn-color);
}

.blog .login__forgot {
    color: var(--text-color);
    margin: 0;
    font-size: 14px;
}

.blog .login__button {
    display: inline-block;
    background-color: var(--btn-color);
    width: 100%;
    color: var(--font-white-primary);
    font-weight: var(--font-medium-weight);
    /* padding: 1rem; */
    padding: 10px;
    /* border-radius: 0.5rem; */
    border-radius: 50px;
    cursor: pointer;
    transition: box-shadow 0.4s;
    letter-spacing: 1px;
}

.blog .login__button:hover {
    box-shadow: 0 4px 24px hsla(230, 75%, 40%, 0.4);
}

/*=============== END LOGIN LAYANAN_MANDIRI_SIDEBAR ===============*/

.blog .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 20px;
    margin: 0;
    /* border-bottom: 1px solid var(--border-color-soft); */
    color: var(--color-default);
}

.blog .sidebar .sidebar-title span {
    /* background: var(--color-section-2); */
    color: var(--btn-color);
    /* padding: 5px 30px; */
    border-radius: 7px;
}

.blog .sidebar .sidebar-title i {
    font-size: 25px;
}

.blog .sidebar .sidebar-item {
    padding: 24px;
    border-bottom: 1px solid var(--border-color-sidebar);
}

.blog .sidebar .sidebar-item + .sidebar-item {
    margin-top: 10px;
}

/*=============== START RECENT-POST ===============*/

.blog .sidebar .recent-posts .post-item + .post-item {
    margin-top: 15px;
}

.blog .sidebar .recent-posts .img {
    max-height: 440px;
}

.blog .sidebar .recent-posts img {
    border-radius: 7px;
    width: 75px;
    height: 75px;
    object-fit: cover;
}

.blog .sidebar .recent-posts h4 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 7px;
}

.blog .sidebar .recent-posts h4 a {
    color: var(--color-default);
    transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
    color: var(--btn-color-hover);
}

.blog .sidebar .recent-posts .time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: rgba(34, 34, 34, 0.4);
}

/*=============== END RECENT-POST ===============*/

/*=============== START RECENT-ARTICLE ===============*/
.blog .sidebar .recent-article .post-item + .post-item {
    margin-top: 15px;
}

.blog .sidebar .recent-article h4 {
    font-size: 15px;
    font-weight: bold;
}

.blog .sidebar .recent-article .time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: rgba(34, 34, 34, 0.4);
}

.blog .sidebar .recent-article h4 a {
    color: var(--color-default);
    transition: 0.3s;
}

.blog .sidebar .recent-article h4 a:hover {
    color: var(--btn-color-hover);
}

/*=============== END RECENT-ARTICLE ===============*/

/*=============== START RECENT-ANNOUNCEMENT ===============*/
.blog .sidebar .recent-announcement .post-item + .post-item {
    margin-top: 15px;
}

.blog .sidebar .recent-announcement h4 {
    font-size: 15px;
    font-weight: bold;
}

.blog .sidebar .recent-announcement .time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: rgba(34, 34, 34, 0.4);
}

.blog .sidebar .recent-announcement h4 a {
    color: var(--color-default);
    transition: 0.3s;
}

.blog .sidebar .recent-announcement h4 a:hover {
    color: var(--btn-color-hover);
}

/*=============== END RECENT-ANNOUNCEMENT ===============*/

/*=============== START RECENT-STATISTICS ===============*/

/*=============== END RECENT-STATISTICS ===============*/

/*=============== START VISI -MSI ===============*/
.blog .visi-misi .title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.blog .visi-misi .title span {
    font-size: 20px;
    font-weight: var(--font-semi-bold-weight);
    background: var(--color-section-2);
    color: var(--tertiary-color);
    border-radius: 15px;
    padding: 5px 25px;
}

.blog .visi-misi ul {
    list-style: none;
    padding: 0;
}

.blog .visi-misi ul li {
    padding: 0 0 10px 30px;
    position: relative;
}

.blog .visi-misi ul i {
    position: absolute;
    font-size: 20px;
    left: 0;
    top: -3px;
    color: var(--tertiary-color);
}

.blog .visi-misi .quote-icon-left,
.blog .visi-misi .quote-icon-right {
    color: var(--tertiary-color);
    font-size: 20px;
}

.blog .visi-misi .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.blog .visi-misi .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

/*=============== END VISI -MSI ===============*/

/*=============== START STRUKTUR ORGANISASI ===============*/
.blog .struktur-organisasi {
    margin-bottom: 30px;
}

.blog .struktur-organisasi .struktur-content {
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
}

.blog .struktur-organisasi img {
    border-top-right-radius: var(--border-radius);
    border-top-left-radius: var(--border-radius);
}

.blog .struktur-organisasi .struktur-info {
    border-bottom-right-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
    border-bottom: 1px solid var(--border-color-soft);
    border-left: 1px solid var(--border-color-soft);
    border-right: 1px solid var(--border-color-soft);
    text-align: center;
    padding: 24px;
}

.blog .struktur-organisasi .struktur-info h2 {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 18px;
}

.blog .struktur-organisasi .struktur-info span {
    font-style: italic;
    display: block;
    font-size: 15px;
    color: rgba(var(--default-color-rgb), 0.6);
    margin-bottom: 10px;
}

/*=============== END STRUKTUR ORGANISASI ===============*/

/*=============== START DEMOGRAFI ===============*/
.blog .content-table {
    border-collapse: collapse;
    font-size: 0.9em;
    min-width: 400px;
    /* border-radius: 5px 5px 0 0; */
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-top: 20px;
}

.blog .content-table thead th {
    color: var(--font-black-content);
    /* background-color: #e65b48; */
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
}

.blog .content-table th,
.blog .content-table td {
    padding: 12px 15px;
}

.blog .content-table tbody th {
    font-weight: 400;
}

.blog .content-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.blog .content-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.blog .content-table tbody tr:last-of-type {
    border-bottom: 2px solid var(--tertiary-color);
}

.blog .content-table .sub {
}

/* .blog .content-table tbody tr.active-row {
    font-weight: bold;
    color: var(--tertiary-color);
  } */

.blog .table::-webkit-scrollbar {
    height: 5px;
}

.blog .table .one {
    text-align: start;
}

.blog .table .total {
    text-align: center;
    font-weight: var(--font-bold-weight);
}

/* .blog .table thead,
  th,
  .total {
    text-align: center;
  }
  
  .blog .table tbody td {
    text-align: center;
  }
  
  .blog .table .one {
    text-align: start;
  }
  
  .blog .table tfoot td {
    background-color: var(--tertiary-color);
    color: var(--font-white-secondary);
    text-align: center;
  } */

/*=============== END DEMOGRAFI ===============*/

/*=============== START PENDIDIKAN ===============*/
.blog #chart-container {
    position: relative;
    height: 450px;
    width: 100%;
    overflow: hidden;
}

.blog #chart-container canvas {
    margin: 0 auto;
    /* background: #000; */
}

/* .blog .chart-container-pekerjaan {
    margin-bottom: 90px;
} */

/* @media (max-width: 979px) {
    .blog .chart-container-pekerjaan {
        height: 900px;
        width: 100%;
    }
} */

/*=============== END PENDIDIKAN ===============*/

/*=============== STAR BERITA ===============*/

.blog .list-content td {
    margin-bottom: 20px;
    border-radius: 8px;
}

.blog .list-content td:hover {
    background: var(--color-sidebar);
    /* box-shadow: var(--box-shadow); */
}

.blog .list-content td:hover a {
    color: var(--color-primary);
}

.blog .list-content td:hover img {
    transform: scale(1.1);
}

/* 
.blog .list-content .img {
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
} */

/* @media (max-width: 508px) {
    .blog .list-content .img {
        max-width: 100%;
    }

    .blog .list-item {
        flex-direction: column;
    }
} */

.blog .list-content img {
    border-radius: 8px;
    object-fit: cover;
    transition: all ease-in-out 0.2s;
}

.blog .list-content .title a {
    color: var(--font-black-title);
    text-decoration: none;
}

.blog .list-content .title h2 {
    font-size: 18px;
}

.blog .list-content .title span {
    font-style: italic;
    padding: 5px 10px;
    border-radius: 6px;
    background: var(--color-section-2);
    color: var(--tertiary-color);
    font-size: 12px;
}

#paginate {
    border: 1px solid red;
}

.pagination > li > a,
.pagination > li > span {
    /* background-color: red */
    color: var(--tertiary-color);
}

.pagination > li > a:hover {
    color: var(--tertiary-color);
}

.pagination > li.active > span {
    background-color: var(--tertiary-color);
}

.pagination > li.active > a {
    background: var(--tertiary-color);
    border: 1px solid var(--tertiary-color);
    color: var(--font-white-primary);
}

.page-link:focus {
    box-shadow: none !important;
    border-color: transparent !important;
}

/*=============== END BERITA ===============*/

/*=============== STAR PENGUMUMAN ===============*/
.blog .list-content .list-item-pengumuman {
    /* padding: 20px 20px 10px 20px ; */
    padding: 20px 0;
    border-radius: unset;
    border-bottom: 1px solid var(--border-color-sidebar);
}

/* .blog .list-content .title-pengumuman {
    padding-bottom: 15px;
  } */

@media (max-width: 997px) {
    .blog .list-item-pengumuman {
        flex-direction: column;
    }

    .blog .list-content .title-pengumuman {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .blog .list-content .title-pengumuman .format {
        margin: 0;
    }
}

.blog .list-content .list-item-pengumuman:hover {
    background: none;
}

/* .blog .list-content .unduh {
    display: flex;
    align-items: center;
    justify-content: center;
  } */

/* .blog .list-item .unduh i {
    position: relative;
    margin-right: 5px;
  }
  
  .blog .list-item .unduh .unduh-btn {
    text-decoration: none;
    color: var(--tertiary-color);
  }
  
  .blog .list-item .unduh span {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border: 1px solid var(--tertiary-color);
    border-radius: 8px;
    padding: 7px 10px;
  }
  
  .blog .list-item .unduh span:hover {
    background-color: var(--tertiary-color);
    color: var(--font-white-primary);
  } */

.blog .list-item .format {
    margin-left: 10px;
}

.blog .unduh a {
    text-decoration: none;
}

.blog .unduh button {
    position: relative;
    width: 110px;
    height: 35px;
    cursor: pointer;
    display: flex;
    align-items: center;
    /* border: 1px solid #17795E; */
    background-color: var(--tertiary-color);
    overflow: hidden;
    border-radius: 8px;
}

.blog .unduh .button,
.blog .unduh .button__icon,
.blog .unduh .button__text {
    transition: all 0.3s;
}

.blog .unduh .button .button__text {
    font-size: 16px;
    transform: translateX(7px);
    color: #fff;
    font-weight: 400;
}

.blog .unduh .button .button__icon {
    position: absolute;
    transform: translateX(65px);
    height: 100%;
    width: 40px;
    background-color: var(--tertiary-color-hover);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog .unduh .button .svg {
    width: 18px;
    fill: #fff;
}

.blog .unduh .button:hover {
    background: var(--tertiary-color-hover);
}

.blog .unduh .button:hover .button__text {
    color: transparent;
}

.blog .unduh .button:hover .button__icon {
    width: 100px;
    transform: translateX(0);
}

/* .blog .unduh .button:active .button__icon {
    background-color: #146c54;
  }
  
  .blog .unduh .button:active {
    border: 1px solid #146c54;
  } */

/*=============== END PENGUMUMAN ===============*/

/*=============== START PRODUK-HUKUM ===============*/
.blog .list-content .list-item-produk-hukum {
    /* padding: 20px 20px 10px 20px ; */
    padding: 24px;
    margin: 20px 0;
    /* border-radius: unset; */
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color-sidebar);
}

/* .blog .list-content .title-produk-hukum {
    padding-bottom: 15px;
  } */

@media (max-width: 997px) {
    .blog .list-item-produk-hukum {
        flex-direction: column;
    }

    .blog .list-content .title-produk-hukum {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .blog .list-content .title-produk-hukum .format {
        margin: 0;
    }

    .blog .list-content .title-produk-hukum .tahun {
        margin: 0;
    }
}

.blog .list-content .list-item-produk-hukum:hover {
    /* background: black; */
}

.blog .list-item-produk-hukum h2 {
    margin-bottom: 20px;
}

.blog .list-item-produk-hukum .tahun {
    margin: 0 10px;
}

.blog .list-item-produk-hukum span {
    font-weight: 600;
}

.blog .list-content .filter-top .form-select:focus {
    box-shadow: unset !important;
    border-color: var(--tertiary-color);
}

/* select option */

.blog .list-content .select-menu {
    /* width: 380px;
    margin: 140px auto; */
    position: relative;
}

.blog .list-content .select-menu .select-btn {
    position: relative;
    display: flex;
    background: #fff;
    padding: 6px 12px 6px 12px;
    font-size: 15px;
    font-weight: 400;
    border-radius: 8px;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
    /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); */
    border: 1px solid var(--border-color-sidebar);
}

.blog .list-content .select-menu .select-btn:focus {
    border-color: var(--tertiary-color);
}

.blog .list-content .select-menu .select-btn.click {
    border-color: var(--tertiary-color);
}

.blog .list-content .select-btn i {
    font-size: 20px;
    transition: 0.3s;
}

.blog .list-content .select-menu.active .select-btn i {
    transform: rotate(-180deg);
}

.blog .list-content .select-menu .options {
    position: absolute;
    width: 100%;
    padding: 10px;
    /* padding: 6px 12px; */

    margin-top: 10px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color-sidebar);
    display: none;
    z-index: 9000;
}

.blog .list-content .select-menu.active .options {
    display: block;
}

.blog .list-content .options .option {
    display: flex;
    /* height: 55px; */
    cursor: pointer;
    padding: 6px 6px 6px 16px;
    border-radius: 8px;
    align-items: center;
    background: #fff;
}

.blog .list-content .options .option:hover {
    background: var(--color-section-2);
}

.blog .list-content .option i {
    font-size: 25px;
    margin-right: 12px;
}

.blog .list-content .option .option-text {
    font-size: 14px;
    color: #333;
}

.blog .content-skeleton-ph {
    padding: 24px;
}

@media (max-width: 375px) {
    .blog .content-skeleton-ph h2 {
        width: 90% !important;
    }

    .blog .content-skeleton {
        flex-direction: column;
    }

    .blog .content-skeleton-phh {
        padding: 12px;
    }
}

.blog .list-content .paginations .button.disabled {
    color: #b3b3b3;
    pointer-events: none;
}

.blog .list-content .paginations .links .link.disabled {
    color: #b3b3b3;
    pointer-events: none;
}

.no-data i {
    font-size: 32px;
    color: #efc15a;
}

.no-data h5 {
    font-size: 14px;
}

.blog .list-content .paginations-skeleton {
    /* margin-top: 120px; */
}

/*=============== END PRODUK-HUKUM ===============*/

/*=============== STAR LAPAK-DESA ===============*/
.blog .lapak-desa img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

.blog .lapak-desa .card__article {
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

/* .blog  .lapak-desa .card__img {
    width: 328px;
    border-radius: 1.5rem;
  } */

.blog .lapak-desa .card__data {
    width: 230px;
    background-color: var(--container-color);
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 24px hsla(0, 0%, 0%, 0.15);
    border-radius: 1rem;
    position: absolute;
    bottom: -7rem;
    left: 0;
    right: 0;
    margin-inline: auto;
    opacity: 0;
    transition: opacity 0.6s 0.6s;
}

@media (max-width: 992px) {
    .blog .lapak-desa .card__data {
        width: 300px;
    }
}

.blog .lapak-desa .card__data i {
    position: relative;
    top: 1px;
}

.blog .lapak-desa .card__description {
    display: block;
    font-size: var(--small-font-size);
    margin-bottom: 0.25rem;
}

.blog .lapak-desa .card__title {
    font-size: var(--h2-font-size);
    font-weight: 500;
    color: var(--title-color);
    margin-bottom: 0.75rem;
}

.blog .lapak-desa .card__button {
    font-size: 14px;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 8px;
    background: var(--tertiary-color);
    color: var(--font-white-primary);
    transition: all 0.3s;
}

.blog .lapak-desa .card__button:hover {
    background: var(--tertiary-color-hover);
    /* text-decoration: underline; */
}

/* Naming animations in hover */
.blog .lapak-desa .card__article:hover .card__data {
    animation: show-data 0.6s forwards;
    opacity: 1;
    transition: opacity 0.3s;
}

.blog .lapak-desa .card__article:hover {
    animation: remove-overflow 2s forwards;
}

.blog .lapak-desa .card__article:not(:hover) {
    animation: show-overflow 2s forwards;
}

.blog .lapak-desa .card__article:not(:hover) .card__data {
    animation: remove-data 0.6s forwards;
}

/* Card animation */
@keyframes show-data {
    50% {
        transform: translateY(-10rem);
    }

    100% {
        transform: translateY(-7rem);
    }
}

@keyframes remove-overflow {
    to {
        overflow: initial;
    }
}

@keyframes remove-data {
    0% {
        transform: translateY(-7rem);
    }

    50% {
        transform: translateY(-10rem);
    }

    100% {
        transform: translateY(0.5rem);
    }
}

@keyframes show-overflow {
    0% {
        overflow: initial;
        pointer-events: none;
    }

    50% {
        overflow: hidden;
    }
}
.blog .content p {
    font-weight: var(--font-medium-weight);
    margin-bottom: 5px;
}

.blog .content .name {
    font-size: 20px;
    font-weight: var(--font-bold-weight);
}

.blog .content .owner {
    font-weight: var(--font-semi-bold-weight);
}

/*--------------------------------------------------------------
  # Blog Home Pagination
  --------------------------------------------------------------*/
.blog .blog-pagination {
    margin-top: 30px;
    color: var(--font-white-primary);
}

.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: 8px;
}

.blog .blog-pagination li a {
    border-radius: 8px;
    color: var(--color-secondary);
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
    background: var(--tertiary-color);
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
    background: var(--tertiary-color);
    color: var(--color-white);
}

/*=============== END LAPAK-DESA ===============*/

/*=============== STAR IDM ===============*/
.blog .box-idm .box {
    margin: 0 5px;
    padding: 10px;
    border-radius: var(--border-radius);
    color: var(--font-white-primary);
}

.blog .box-idm i {
    font-size: 30px;
}

.blog .box-idm .box h2 {
    font-size: 18px;
    font-weight: var(--font-bold-weight);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog .box-idm .box span {
    font-size: 14px;
}

.blog .content-box-1 {
    background: #3b82f6;
}

.blog .content-box-2 {
    background: #eab308;
}

.blog .content-box-3 {
    background: #16a34a;
}

.blog .content-box-4 {
    background: #ef4444;
}

/* IDM-TABLE  */

.blog .table-idm tr {
    font-size: 14px;
}

.blog .table-idm .horizontal {
    text-align: center;
    color: var(--font-black-title);
}

/*=============== END IDM ===============*/

/*=============== STAR POSTINGAN ===============*/
.blog .list-content-postingan .list-item i {
    position: relative;
    top: 1px;
}

.blog .list-content-postingan .list-item span {
    font-size: 12px;
    background: var(--color-sidebar);
    padding: 5px 6px;
    border-radius: var(--border-radius);
}

.blog .list-content-postingan .list-item {
    border-radius: var(--border-radius);
    padding: 10px;
}

.blog .list-content-postingan .list-item:hover {
    background: var(--color-sidebar);
}

.blog .list-content-postingan .list-item .content h2 {
    font-size: 18px;
    color: var(--font-black-title);
}

@media screen and (max-width: 375px) {
    .blog .list-content-postingan .list-item .content h2 {
        font-size: 16px;
        color: var(--font-black-title);
    }
}

.blog .list-content-postingan .list-item .content:hover h2 {
    color: var(--color-primary);
}

.blog .list-content-postingan .list-item .img {
    border-radius: 8px;
    overflow: hidden;
}

.blog .list-content-postingan .list-item img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    transition: all ease-in-out 0.2s;
    object-fit: cover;
}

.blog .list-content-postingan .list-item:hover img {
    transform: scale(1.3);
}

/* pagination */
.blog .col-lg-7 .paginations .button,
.blog .col-lg-7 .paginations .links,
.blog .col-lg-7 .paginations .link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog .col-lg-7 .paginations {
    margin: 30px 0;
    padding: 20px;
    border-radius: 8px;
    column-gap: 12px;
    background: #fff;
    /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); */
}

/* @media screen and (max-width: 375px) {
    .blog .col-lg-7 .paginations {
        column-gap: 6px;
    }
} */

.blog .col-lg-7 .paginations .button {
    border: none;
}

.blog .col-lg-7 .paginations .button i {
    pointer-events: none;
}

.blog .col-lg-7 .paginations .button.disabled {
    color: #b3b3b3;
    pointer-events: none;
}

.button,
.blog .col-lg-7 .paginations .link {
    height: 35px;
    width: 35px;
    font-size: 18px;
    color: #666666;
    background-color: #f2f2f2;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.blog .col-lg-7 .paginations .links {
    column-gap: 12px;
}

.blog .list-content .paginations .links .link.disabled,
.blog .col-lg-7 .paginations .links .link.disabled {
    color: #b3b3b3;
    pointer-events: none;
}

.blog .col-lg-7 .paginations .link {
    font-weight: 500;
    text-decoration: none;
}

.blog .col-lg-7 .paginations .button:hover,
.blog .col-lg-7 .paginations .link:hover {
    color: #fff;
    background: var(--tertiary-color);
}

.blog .col-lg-7 .paginations .link.active {
    color: #fff;
    background: var(--tertiary-color);
}

/* 2 produk hukum */
.blog .list-content .paginations .button,
.blog .list-content .paginations .links,
.blog .list-content .paginations .link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog .list-content .paginations {
    margin: 30px 0;
    padding: 20px;
    border-radius: 8px;
    column-gap: 12px;
    background: #fff;
    /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); */
}

/* @media screen and (max-width: 375px) {
    .blog .list-content .paginations {
        column-gap: 6px;
    }
} */

.blog .list-content .paginations .button {
    border: none;
}

.blog .list-content .paginations .button i {
    pointer-events: none;
}

.blog .list-content .paginations .button.disabled {
    color: #b3b3b3;
    pointer-events: none;
}

.button,
.blog .list-content .paginations .link {
    height: 35px;
    width: 35px;
    font-size: 18px;
    color: #666666;
    background-color: #f2f2f2;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.blog .list-content .paginations .links {
    column-gap: 12px;
}

.blog .list-content .paginations .links .link.disabled {
    color: #b3b3b3;
    pointer-events: none;
}

.blog .list-content .paginations .link {
    font-weight: 500;
    text-decoration: none;
}

.blog .list-content .paginations .button:hover,
.blog .list-content .paginations .link:hover {
    color: #fff;
    background: var(--tertiary-color);
}

.blog .list-content .paginations .link.active {
    color: #fff;
    background: var(--tertiary-color);
}

/* END PAGINATION */

/* PAGINATION LAPAK */
.blog-lapak .paginations .button,
.blog-lapak .paginations .links,
.blog-lapak .paginations .link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-lapak .paginations {
    margin: 30px 0;
    padding: 20px;
    border-radius: 8px;
    column-gap: 12px;
    background: #fff;
    /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); */
}

/* @media screen and (max-width: 375px) {
    .blog-lapak .paginations {
        column-gap: 6px;
    }
} */

.blog-lapak .paginations .button {
    border: none;
}

.blog-lapak .paginations .button i {
    pointer-events: none;
}

.blog-lapak .paginations .button.disabled {
    color: #b3b3b3;
    pointer-events: none;
}

.button,
.blog-lapak .paginations .link {
    height: 35px;
    width: 35px;
    font-size: 18px;
    color: #666666;
    background-color: #f2f2f2;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.blog-lapak .paginations .links {
    column-gap: 12px;
}

.blog .list-content .paginations .links .link.disabled,
.blog-lapak .paginations .links .link.disabled {
    color: #b3b3b3;
    pointer-events: none;
}

.blog-lapak .paginations .link {
    font-weight: 500;
    text-decoration: none;
}

.blog-lapak .paginations .button:hover,
.blog-lapak .paginations .link:hover {
    color: #fff;
    background: var(--tertiary-color);
}

.blog-lapak .paginations .link.active {
    color: #fff;
    background: var(--tertiary-color);
}

/* PAGINATION Galeri */
.blog-galeri .paginations .button,
.blog-galeri .paginations .links,
.blog-galeri .paginations .link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-galeri .paginations {
    margin: 30px 0;
    padding: 20px;
    border-radius: 8px;
    column-gap: 12px;
    background: #fff;
    /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); */
}

/* @media screen and (max-width: 375px) {
    .blog-galeri .paginations {
        column-gap: 6px;
    }
} */

.blog-galeri .paginations .button {
    border: none;
}

.blog-galeri .paginations .button i {
    pointer-events: none;
}

.blog-galeri .paginations .button.disabled {
    color: #b3b3b3;
    pointer-events: none;
}

.button,
.blog-galeri .paginations .link {
    height: 35px;
    width: 35px;
    font-size: 18px;
    color: #666666;
    background-color: #f2f2f2;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.blog-galeri .paginations .links {
    column-gap: 12px;
}

.blog .list-content .paginations .links .link.disabled,
.blog-galeri .paginations .links .link.disabled {
    color: #b3b3b3;
    pointer-events: none;
}

.blog-galeri .paginations .link {
    font-weight: 500;
    text-decoration: none;
}

.blog-galeri .paginations .button:hover,
.blog-galeri .paginations .link:hover {
    color: #fff;
    background: var(--tertiary-color);
}

.blog-galeri .paginations .link.active {
    color: #fff;
    background: var(--tertiary-color);
}

/* 2 produk hukum */
.blog .list-content .paginations .button,
.blog .list-content .paginations .links,
.blog .list-content .paginations .link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog .list-content .paginations {
    margin: 30px 0;
    padding: 20px;
    border-radius: 8px;
    column-gap: 12px;
    background: #fff;
    /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); */
}

/* @media screen and (max-width: 375px) {
    .blog .list-content .paginations {
        column-gap: 6px;
    }
} */

.blog .list-content .paginations .button {
    border: none;
}

.blog .list-content .paginations .button i {
    pointer-events: none;
}

.blog .list-content .paginations .button.disabled {
    color: #b3b3b3;
    pointer-events: none;
}

.button,
.blog .list-content .paginations .link {
    height: 35px;
    width: 35px;
    font-size: 18px;
    color: #666666;
    background-color: #f2f2f2;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.blog .list-content .paginations .links {
    column-gap: 12px;
}

.blog .list-content .paginations .links .link.disabled {
    color: #b3b3b3;
    pointer-events: none;
}

.blog .list-content .paginations .link {
    font-weight: 500;
    text-decoration: none;
}

.blog .list-content .paginations .button:hover,
.blog .list-content .paginations .link:hover {
    color: #fff;
    background: var(--tertiary-color);
}

.blog .list-content .paginations .link.active {
    color: #fff;
    background: var(--tertiary-color);
}

/* END PAGINATION */

.blog .postingan .card {
    border: none;
    outline: none;
}

.blog .postingan .card .img {
    border-radius: 10px;
    overflow: hidden;
}

.blog .postingan .card img {
    width: fit-content;
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
    transition: all ease-in-out 0.2s;
}

.blog .postingan .card:hover img {
    transform: scale(1.1);
}

.blog .postingan .card .title {
    border-radius: 6px;
    font-size: 14px;
    color: var(--font-white-primary);
    padding: 24px;
    background: linear-gradient(180deg, transparent, #1a2a46);
    backdrop-filter: blur(1px);
    /* -webkit-backdrop-filter: blur(14px); */
}

.blog .postingan .card .title p {
    font-weight: 600;
    font-size: 24px;
    color: var(--font-white-primary);
}

.blog .postingan .title i {
    position: relative;
    top: 1px;
}

/* .blog .sidebar-postingan .title-head span::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: black;
    width: 100%;
    height: 3px;
  } */

.blog .sidebar-postingan .title-head {
    padding: 0 10px 10px;
    margin-bottom: 15px;
    /* border-radius: 8px; */
    /* background: var(--tertiary-color-soft); */
    border-bottom: 2px solid var(--border-color-sidebar);
}

.blog .sidebar-postingan .title-head span {
    font-size: 20px;
    font-weight: var(--font-bold-weight);
}

.blog .sidebar-postingan .title-head .second {
    color: #999;
}

.blog .sidebar-postingan .list-content {
    padding: 10px;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
}

.blog .sidebar-postingan .list-content .img {
    /* display: flex;
    align-items: center;
    justify-content: center; */
    border-radius: 8px;
    overflow: hidden;
}

.blog .sidebar-postingan .list-content img {
    transition: all ease-in-out 0.2s;
    object-fit: cover;
}

.blog .sidebar-postingan .list-content:hover img {
    transform: scale(1.3);
}

.blog .sidebar-postingan .list-content:hover {
    background: var(--color-sidebar);
}

.blog .sidebar-postingan .list-content:hover .content-title h2 {
    color: var(--color-primary);
}

.blog .list-content img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.blog .sidebar-postingan .list-content .content-title h2 {
    color: var(--font-black-title);
    font-weight: var(--font-medium-weight);
    margin-bottom: 3px;
    font-size: 16px;
}

.blog .sidebar-postingan .list-content .content-title span {
    font-size: 12px;
    background: var(--color-sidebar);
    padding: 5px 6px;
    border-radius: var(--border-radius);
}

.blog .sidebar-postingan .list-content .content-title .post-category {
    margin-right: 8px;
}

/*=============== END POSTINGAN ===============*/

/*=============== STAR KONTAK ===============*/
#contact {
    padding: 60px 0;
}

#contact .contact-inner {
    margin: 106px 0 10px 0;
}

#contact .box-contact {
    border-radius: var(--border-radius);
    background: #f9fafb;
    padding: 24px;
    margin: 0 0 24px 0;
    border: 1px solid transparent;
}

#contact .box-contact .icon-alamat {
    padding: 24px 24px 0;
}

#contact .box-contact:hover {
    border: 1px solid var(--border-color);
box-shadow: var(--box-shadow);
}

#contact .box-contact svg {
    background: var(--tertiary-color);
    padding: 12px;
    border-radius: var(--border-radius);
}

#contact .box-contact .title {
    font-size: 18px;
    font-weight: 600;
}

#contact .box-contact .description {
}
#contact .box-contact .description-2 {
    border-top: 1px solid var(--border-color);
    color: #374151;
    font-size: 16;
}

.contact-area {
    height: auto;
    width: 100%;
}

.contact-content {
    padding: 100px;
    background: #000 none repeat scroll 0 0;
}

.contact-content-right {
    padding: 100px;
}

#google-map {
    height: 370px;
    margin-bottom: 20px;
}

/*=============== END KONTAK ===============*/

/*=============== STAR FORM-VERIFY ===============*/
.upload-file {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    /* padding: 12px; */
}

.upload-file img {
    max-width: 30%;
}

.input-file h2 {
    font-size: 22px;
    font-weight: var(--font-bold-weight);
}

.input-file input[type="file"] {
    position: absolute;
    top: 6px;
    left: 0;
    z-index: -1;
}

.input-file .input-label {
    font-size: 16px;
    cursor: pointer;
    font-weight: var(--font-bold-weight);
    padding: 10px 15px;
    background: var(--tertiary-color);
    color: var(--font-white-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.input-file .input-label i {
    font-size: 26px;
}

/* cari */

.search-file {
    margin: 0 auto;
    max-width: 550px;
    width: 100%;
    background: white;
}

.search-file h2 {
    font-size: 18px;
    font-weight: var(--font-bold-weight);
}

.formbold-form-input {
    width: 100%;
    padding: 10px 25px;
    border-radius: var(--border-radius);
    border: 1px solid #dde3ec;
    font-weight: 500;
    font-size: 16px;
    color: #536387;
    outline: none;
    resize: none;
}

.formbold-form-input:focus {
    border-color: var(--tertiary-color);
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.search-form {
    display: flex;
    gap: 15px;
}

.formbold-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    border-radius: 50px;
    padding: 10px 25px;
    border: none;
    font-weight: 500;
    background-color: var(--tertiary-color);
    color: white;
    cursor: pointer;
}

.formbold-btn i {
    font-size: 24px;
}

.formbold-btn:hover {
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

/*=============== END FORM-VERIFY ===============*/

/*=============== START GALLERY ===============*/
/* skeleton */
.skeleton {
    animation: skeleton-loading 1s linear infinite alternate;
    border-radius: var(--border-radius);
    position: relative !important;
}

.skeletoni {
    animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
    0% {
        background-color: hsl(200, 20%, 80%);
    }

    100% {
        background-color: hsl(200, 20%, 95%);
    }
}

/* .skeleton-text {
    width: 100%;
    height: 0.7rem;
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
}

.skeleton-text__body {
    width: 75%;
}

.skeleton-footer {
    width: 30%;
} */

.blog .posts-list article {
    /* border: 1px solid transparent; */
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: var(--box-shadow-2);
}

.blog .posts-list article:hover {
    /* box-shadow: var(--box-shadow-2); */
}

.blog .posts-list .post-img {
    max-height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
}

.blog .posts-list .title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    /* margin: 0 0 20px 0; */
}

.blog .posts-list .description {
    text-align: justify;
}

.blog .posts-list .title a {
    color: var(--heading-color);
    transition: 0.3s;
}

.blog .posts-list .title a:hover {
    color: var(--accent-color);
}

.blog .posts-list .post-author-img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.blog .posts-list .post-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.blog .posts-list .post-date {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.blog .pagination-galeri {
    margin-top: 30px;
    color: var(--font-white-primary);
}

.blog .pagination-galeri ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog .pagination-galeri li {
    margin: 0 5px;
    transition: 0.3s;
    border-radius: 50%;
}

.blog .pagination-galeri li a {
    color: #cecece;
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog .pagination-galeri li.active,
.blog .pagination-galeri li:hover {
    background: var(--tertiary-color);
    color: var(--contrast-color);
}

.blog .pagination-galeri li.active a,
.blog .pagination-galeri li:hover a {
    color: var(--contrast-color);
}

.more-btn {
    display: inline-block;
    /* background: rgba(255, 255, 255, 0.2); */
    background: var(--btn-color);
    padding: 6px 30px 8px 30px;
    color: #fff;
    border-radius: 50px;
    transition: all ease-in-out 0.2s;
}

.more-btn i {
    display: inline-block;
    font-size: 14px;
    position: relative;
    top: 1.5px;
    transition: all 0.3s ease;
}

.more-btn:hover i {
    transform: translateX(0.25rem);
    /* transition: all 0.1s ease; */
}

.more-btn:hover {
    color: #fff;
    background: var(--btn-color-hover);
}

.more-btn-lapak {
    display: inline-block;
    /* background: rgba(255, 255, 255, 0.2); */
    background: var(--btn-color);
    padding: 6px 20px 6px 20px;
    color: #fff;
    border-radius: 50px;
    transition: 0.2s;
}

.more-btn-lapak i {
    font-size: 18px;
    position: relative;
    /* top: 1px; */
}

.more-btn-lapak:hover {
    color: #fff;
    background: #25d366;
}

/*=============== END GALLERY ===============*/

/*=============== STAR IDM ===============*/
.blog .placeholder {
    border-radius: var(--border-radius);
    padding: 0 3px;
    /* width: 70%;
    background: linear-gradient(
        90deg,
        var(--loader-background-color-idm) 100%,
        var(--loader-highlight-color-idm) 100%,
        var(--loader-background-color-idm) 100%
    );
    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;
    } */
}

.blog .box-idm .box {
    margin: 0 5px;
    padding: 10px;
    border-radius: var(--border-radius);
    color: var(--font-white-primary);
}

.blog .box-idm i {
    font-size: 30px;
}

.blog .box-idm .box h2 {
    font-size: 18px;
    font-weight: var(--font-bold-weight);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog .box-idm .box span {
    font-size: 14px;
}

.blog .content-box-1 {
    background: #3b82f6;
}

.blog .content-box-2 {
    background: #eab308;
}

.blog .content-box-3 {
    background: #16a34a;
}

.blog .content-box-4 {
    background: #ef4444;
}

/* IDM-TABLE  */

.blog .table-idm tr {
    font-size: 14px;
}

.blog .table-idm .horizontal {
    text-align: center;
    color: var(--font-black-title);
}

.blog .content-table {
    border-collapse: collapse;
    font-size: 0.9em;
    min-width: 400px;
    /* border-radius: 5px 5px 0 0; */
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.blog .content-table thead th {
    color: var(--font-black-content);
    /* background-color: #e65b48; */
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
}

.blog .content-table th,
.blog .content-table td {
    padding: 10px;
}

.blog .content-table tbody th {
    font-weight: 400;
}

.blog .content-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.blog .content-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.blog .content-table .sub {
}

/* .blog .content-table tbody tr.active-row {
  font-weight: bold;
  color: var(--tertiary-color);
} */

.blog .table::-webkit-scrollbar {
    height: 5px;
}

.blog .table .one {
    text-align: start;
}

.blog .table .total {
    text-align: center;
    font-weight: var(--font-bold-weight);
}

/* .blog .table thead,
th,
.total {
  text-align: center;
}

.blog .table tbody td {
  text-align: center;
}

.blog .table .one {
  text-align: start;
}

.blog .table tfoot td {
  background-color: var(--tertiary-color);
  color: var(--font-white-secondary);
  text-align: center;
} */

/*=============== END IDM ===============*/

/*=============== STAR SDGs ===============*/

/* SKELETONLOADER */
.loader-skeleton {
    width: 50%;
    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;
    }
}

.loader-skeleton-skor-1 {
    width: 100%;
    background: linear-gradient(
        90deg,
        var(--loader-background-color-skor1) 25%,
        var(--loader-highlight-color-skor1) 50%,
        var(--loader-background-color-skor1) 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;
    }
}

.blog .sdgs {
    display: grid;
    place-items: center;
    margin-bottom: 60px;
}

/* .blog .sdgs .placeholder {
  border-radius: 81px;
  background: #000;
} */

.blog .sdgs .description h2 {
    text-align: center;
    font-weight: var(--font-bold-weight);
}

.blog .sdgs .description {
    /* background: var(--color-section-2); */
    padding: 10px 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color-sidebar);
    box-shadow: var(--box-shadow);
}

.blog .content-sdgs {
    display: grid;
    place-items: center;
    margin-bottom: 30px;
}

.blog .content-sdgs img {
    border-radius: var(--border-radius);
    /* max-width: 50%; */
}

.blog .content-sdgs h2 {
    padding: 10px 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color-sidebar);
    box-shadow: var(--box-shadow);
    font-size: 20px;
    font-weight: var(--font-bold-weight);
    text-align: center;
    margin: 10px 0;
    /* margin: 0; */
}

.blog .content-sdgs span {
    font-weight: var(--font-semi-bold-weight);
    margin: 10px 0;
}

/*=============== END SDGs ===============*/

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
#footer {
    color: #f1f1f1;
    font-size: 14px;
    background: var(--color-secondary);
}

#footer .footer-top {
    padding: 60px 0 30px 0;
}

#footer .footer-bottom {
    border-top: 1px solid #fafafa;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: var(--font-bold-weight);
}

#footer .footer-top .footer-contact h4 {
    font-size: 22px;
    margin: 0 0 30px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

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

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #f1f1f1;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

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

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #1c84e3;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

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

#footer .footer-top .footer-links ul a {
    color: #c2c2c2;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    text-decoration: none;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: underline;
    color: #fff;
}

#footer .footer-newsletter {
    font-size: 15px;
}

#footer .footer-newsletter h4 {
    font-size: 16px;
    font-weight: bold;
    color: #f1f1f1;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    text-align: left;
    border: 1px solid #bfdcf7;
}

#footer .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #1977cc;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
}

#footer .footer-newsletter form input[type="submit"]:hover {
    background: #1c84e3;
}

#footer .copyright {
    color: #fff;
}

#footer .credits {
    padding-top: 5px;
    font-size: 13px;
    color: #f1f1f1;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: var(--btn-color);
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: var(--btn-color-hover);
    color: #fff;
    text-decoration: none;
}
