@import url("variables.css");
@import url("nav.css");
@import url("form.css");
@import url("agenda.css");

::selection {
    color: var(--color-text-light);
    background: var(--color-primary);
}

html {
    scroll-behavior: smooth;
}

body {
    top: 0px !important;
    overflow-x: hidden;
    font-family: var(--font);
    font-size: var(--font-size);
    line-height: var(--line-height);
    margin: 0;
    padding: 0;
    color: var(--color-text);
    background-color: var(--body-bg-color);
    /* background: linear-gradient(90deg, rgba(255, 255, 255, .9) 0%, rgba(255, 255, 255, .96) 35%, rgba(255, 255, 255, .96) 75%, rgba(255, 255, 255, .9) 100%); */
}

body::-webkit-scrollbar {
    width: 4px;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--color-secondary-light);
}

body::-webkit-scrollbar-track {
    background: var(--color-text-mute);
}

header {
    position: fixed;
    border-bottom: 1px solid var(--color-primary-light);
    width: 100%;
    z-index: 150;
    transition: .3s;
}

.up header {
    margin-top: calc(-1 * var(--header-height));
}

header a {
    color: var(--color-primary);
}

header>section:first-child {
    height: 8px;
    background: var(--color-primary-light);
    color: var(--color-text);
    font-size: .75rem;
}

header>section:first-child p {
    margin: 0 0 0 10px;
    line-height: 1;
    font-weight: 500;
}

header>section:first-child>div {
    display: flex;
    max-width: 1040px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    line-height: 1;
}

header>section:last-child>div {
    padding: 8px 0;
    max-width: 1040px;
    width: calc(100vw - (var(--content-padding) * 2));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

header>section:last-child>div>div {
    display: flex;
    align-items: center;
}

#search-form {
    position: relative;
}

#search {
    max-width: 240px;
    padding-right: 72px;
    border-radius: 16px;
    height: 32px;
    transition: .3s ease-out;
}

#search+button {
    position: absolute;
    right: 0;
    top: 0;
    transition: .3s ease-in-out;
    padding: 0;
    width: 65px;
    height: 32px;
    border-radius: 0 16px 16px 0;
    font-size: .8rem;
    border: 1px solid var(--color-text-light);
}

header img.logo {
    width: 72px;
    margin: 0 12px 0 0;
    border-right: 1px solid #fff;
    padding-right: 14px;
    transition: .3s;
}

header h2 {
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
    transition: .3s;
}

header h2 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: .1rem;
    color: var(--color-text-light);
}

header>section:first-child>div>div:last-child {
    display: flex;
    align-items: center;
}

header>section:first-child>div>div:last-child svg {
    position: relative;
    top: -1px;
}

header .flag {
    display: flex;
    margin-left: 10px;
    align-items: center;
    justify-content: flex-end;
    transition: .3s;
}

header .flag img {
    width: 20px;
    height: 20px;
    margin: 0 0 0 10px;
    opacity: .6;
    transform: scale(.9);
    transition: .2s;
    object-fit: cover;
    border-radius: 50%;
}

header .flag img:hover {
    opacity: 1;
    transform: scale(1);
}

header .flag img.active {
    opacity: 1;
    border: 1px solid var(--color-primary);
    transform: scale(1);
}

.top-menu ul {
    padding: 0;
    margin: 0 0 0 16px;
}

.top-menu li {
    list-style: none;
    display: inline-block;
    margin: 0;
}

.top-menu>ul>li>a {
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    color: var(--color-text-light);
    font-size: 11px;
    padding: 1px 8px;
    margin: 0 0 0 -5px;
    border-right: 1px solid var(--color-text-light);
    transition: .2s;
}

.top-menu>ul>li>a:hover {
    color: var(--color-accent-light);
}

.top-menu>ul>li:last-child>a {
    padding-right: 0;
    border-right: none;
}

.swiper-scrollbar-drag {
    background: var(--color-accent);
    opacity: .6;
}

.swiper-button-next,
.swiper-button-prev {
    transform: scale(.7);
}

.banner .swiper-button-next,
.banner .swiper-button-prev {
    transform: scale(.5);
}

.swiper-pagination-bullet {
    background: var(--color-text-light);
    opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color-accent);
}

main.full h1 {
    position: relative;
}

main h1, main .content h2, main .content h3 {
    line-height: 1;
    color: var(--color-primary);
    padding-bottom: 8px;
}

main h1 {
    font-size: 1.7em;
    font-weight: 700;
    border-bottom: 3px solid var(--color-primary);
}

main .content h2, .content main h3 {
    border-bottom: 2px solid var(--color-primary-light);
}

main .content h2 {
    font-size: 1.6em;
}

main .content h3 {
    font-size: 1.5em;
}

main h1+time {
    margin: -.6rem 0 2rem;
}

main h1:first-child {
    margin-top: 0;
}

.banner-main {
    width: 100%;
    transition: .3s
}

.banner-main article {
    position: relative
}

.banner-main article div {
    position: absolute;
    color: var(--color-text-light);
    z-index: 10;
    width: 60%;
    height: calc(100% - 96px);
    right: 0;
    top: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    padding: 48px 0;
    max-width: 1042px;
    text-transform: uppercase;
}

.banner-main img {
    width: 100%;
    /* height: calc(100vh - 140px); */
    object-fit: cover
}

.banner-main article h5 {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 1px 6px rgba(0,0,0,.3)
}

.banner-main article h2 {
    font-size: 2.1rem;
    line-height: 1.2;
    margin: 0;
    max-width: 600px;
    text-shadow: 0 1px 6px rgba(0,0,0,.3)
}

.banner-main article time {
    font-size: 100%;
    margin-top: 1rem
}

.banner-main article h4 {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
    margin: 16px 0 0;
    transition: .2s ease-out;
    text-shadow: 0 1px 6px rgba(0,0,0,.3)
}

.banner-main article h4:hover {
    transform: scale(1.2)
}

.banner-main article span {
    margin-top: 1rem;
    text-shadow: 0 1px 6px rgba(0,0,0,.3)
}

.services {
    color: var(--color-text-light);
    text-align: center;
}

.services>div {
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px 0;
}

.services>div>div {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 12px;
    justify-content: center;
}

.services>div h2 {
    margin: 0 0 8px;
    line-height: 1.1;
    font-size: 1.8em;
    font-weight: 700;
}

.services>div p {
    line-height: 1.1;
}

.services>div>div>a {
    background: var(--body-bg-color);
    color: var(--color-primary);
    min-height: 144px;
    width: 124px;
    border-radius: 16px;
    padding: 0 8px;
    transition: .5s;
}

.services>div>div>a:hover {
    color: #fff;
}

.services>div>div>a.no-filter:hover>img {
    filter: none;
}

.services>div>div>a>img {
    max-width: 64px;
    background: #fff;
    margin: 24px 0 16px;
    border-radius: 12px;
    transition: .2s;
}

.services>div>div>a:hover>img {
    transition-delay: .2s;
    transform: rotateY(360deg);
}

.services>div>div>a>span {
    font-size: 13px;
    font-weight: 600;
    display: block;
    line-height: 1;
}

.latest-news>div:first-child {
    display: grid;
    grid-template-columns: 260px 1fr;
    grid-gap: 16px;
}

.latest-news>div:first-child>div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.latest-news>div:first-child h6 {
    margin: 0;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1;
}

.latest-news>div:first-child hr {
    margin: 12px 0;
    background-color: var(--color-primary);
    height: 1px;
}

.latest-news>div:first-child h5 {
    margin: 0 0 6px;
    font-weight: 600;
    line-height: 1.1;
}

.latest-news>div:first-child h2 {
    margin: 0;
    font-weight: 700;
    line-height: 1.1;
    font-size: 1.5em;
}

.latest-news>div:first-child img {
    border-radius: 16px;
}

.latest-news>div:last-child p {
    font-size: 13px;
    font-weight: 500;
    text-align: justify;
    margin: 16px 0 0;
}

.latest-news>div:last-child .btn {
    font-size: 13px;
    line-height: 1;
}

.latest-news>div:first-child h6 {
    margin: 0;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1;
    color: var(--color-primary-light);
}

.banner-side {
    display: block;
    border-radius: 16px;
    margin: auto;
}

.news-list {
    margin-top: 24px;
}

.news-list h3 {
    padding: 6px 16px;
    color: var(--color-text-light);
    border-radius: 16px 16px 0 0;
    font-size: 1em;
    font-weight: 700;
}

.news-list a {
    display: grid;
    grid-template-columns: 90px 1fr;
    margin-top: 16px; 
}

.news-list img {
    background: #fff;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid var(--color-primary-light);
    padding: 3px;
}

.news-list time {
    border-bottom: 1px solid var(--color-primary-light);
}

.news-list h4 {
    margin: 8px 0 0;
    line-height: 1.1;
    font-size: 13px;
}

.counter h3 {
    padding: 6px 16px;
    color: var(--color-text-light);
    border-radius: 16px 16px 0 0;
    font-size: 1em;
    font-weight: 700;
    margin: 0;
}

.counter>div {
    color: var(--color-text-light);
    border-radius: 0 0 16px 16px;
}

.counter>div>div {
    display: flex;
    justify-content: space-between;
}

.counter p {
    margin: 0;
    font-size: .75rem;
}

.counter p strong {
    font-size: 1rem;
    margin-left: 4px;
}

.tab {
    margin-top: 32px;
}

.tabbar {
    display: grid;
    grid-template-columns: 144px 144px 144px 144px 144px;
    overflow-x: auto;
}

.tabbar a {
    text-align: center;
    padding: 8px;
    border-radius: 16px 16px 0 0;
    cursor: pointer;
    transition: .2s;
}

.tabbar a:hover {
    background: #fff;
}

.tabbar a.active {
    color: #fff;
    cursor: default;
    pointer-events: none;
}

.tabbar img {
    margin: 0 auto 4px;
    max-width: 54px;
}

.tabbar a.active img {
    filter: invert(1) brightness(2);
} 

.tabbar a span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
}

.tabcontent>div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 8px 16px;
    padding-top: 16px;
}

.tabcontent a:not(.btn) {
    display: block;
    padding: 0 0 8px;
    border-bottom: 1px solid var(--color-primary);
}

.tabcontent h4 {
    margin: 2px 0 0 0;
    line-height: 1.1;
    font-weight: 600;
    font-size: 1em;
}

.tabcontent a.btn {
    font-size: 13px;
    line-height: 1;
    margin-top: 16px;
}

.banner-tvtani {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    grid-gap: 16px;
}

.banner-tvtani img {
    max-height: 206.7px;
    border-radius: 16px;
}

.banner-bottom {
    margin-top: 32px;
    display: grid;
    grid-gap: 16px;
    grid-template-columns: 1fr 1fr 1fr;
}

.banner-bottom img {
    display: block;
    margin: auto;
}

.bottom {
    margin: 0 0 32px;
}

.bottom>div {
    max-width: 1080px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    grid-gap: 16px 48px;
    padding: 0 16px
}

.bottom>div img {
    max-height: 86px;
    filter: saturate(0);
    opacity: .75;
    transition: .2s;
}

.bottom>div img:hover {
    filter: saturate(1);
    transform: scale(1.05);
    opacity: 1;
}

table {
    border-collapse: collapse;
}

/* halaman artikel */

article>.header>.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-primary-light);
    color: var(--color-text-light);
    padding: 12px 16px;
    border-radius: 16px 16px 0 0;
}

article>.header>.top>h2 {
    margin: 0;
    /* color: var(--color-text-light); */
    font-size: 1rem;
    line-height: 1;
    font-weight: 700;
    /* text-transform: none; */
}

article>.header>.top>span {
    font-size: .8rem;
    line-height: 1;
    text-align: right;
    margin-left: 16px;
}

article>.main {
    display: grid;
    grid-template-columns: 240px 1fr;
    margin-top: 16px;
}

article>.main {
    font-weight: 500;
}

article>.main>.nav {
    padding: var(--content-padding);
}

article>.main>.nav>ul {
    padding: 0;
    list-style: none;
    width: 100%;
}

article>.main>.nav>ul>li {
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 600;
    border-radius: 12px;
    margin-bottom: 6px;
    transition: .2s;
}

article>.main>.nav>ul>li.active {
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
}

article>.main>.nav>ul>li.active>svg {
    color: var(--color-text-light);
    margin-right: 8px;
}

article>.main>.nav>ul>li:not(.active):hover {
    background: var(--color-accent-light);
}

article>.main>.nav>ul>li>a {
    display: block;
    padding: 4px 12px;
    border-radius: 12px;
    line-height: 1;
    width: 100%;
}

article>.main>.nav>ul>li.active>a {
    color: var(--color-text-light);
    padding-right: 24px;
}

article>.main>.content {
    padding: var(--content-padding);
}

/* article>.main>.content p {
    text-align: justify;
} */

article>.main>.content .menteri {
    position: relative;
    /* margin-top: 32px; */
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr ;
    grid-gap: 8px;
}

article>.main>.content .menteri>img {
    width: 94px;
    height: 94px;
    object-fit: cover;
    object-position: 50% 20%;
    cursor: pointer;
}

article>.main>.content .menteri img+div {
    display: flex;
    width: 320px;
    background: #fff;
}

article>.main>.content .menteri img+div>div {
    height: 160px;
}

article>.main>.content .menteri img+div p {
    font-size: .75rem;
    font-weight: 500;
    text-align: left;
    margin: 0;
}

article>.main>.content .menteri img+div>img {
    width: 110px;
    height: 140px;
    object-fit: cover;
}

/* tippy */

.tippy-content {
    display: flex;
    justify-content: space-between;
    min-width: 320px;
    padding: 0;
}

.tippy-content>div {
    height: 160px;
    overflow-y: auto;
    padding: 8px;
}

.tippy-content>div::-webkit-scrollbar {
    width: 4px;
}

.tippy-content>div::-webkit-scrollbar-thumb {
    background: #ccc; 
}


.tippy-content div p {
    font-size: .75rem;
    font-weight: 500;
    text-align: left;
}

.tippy-content img {
    width: 120px;
    height: 144px;
    object-fit: cover;
    margin: 8px;
}

.tippy-box {
    background: var(--color-bg-card);
    color: var(--color-text);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .5);
}

.tippy-arrow {
    color: var(--color-bg-card);
}

time svg {
    margin-right: 3px;
    position: relative;
    top: -1px;
}

main h1 svg {
    margin-right: 6px;
}

footer {
    position: relative;
    font-size: .8rem;
    color: var(--color-text-light);
    display: inline-grid;
    grid-template-columns: auto;
    padding: 42px var(--content-padding) 20px;
}

footer:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    /* background: linear-gradient(0deg, var(--color-primary-bright) 0%, var(--color-primary-dark) 100%); */
    opacity: .96;
    z-index: 5;
}

footer section {
    z-index: 10;
    max-width: 1040px;
    width: 100%;
    margin: auto;
}

footer>section:first-child {
    display: inline-grid;
    grid-template-columns: 50% 50%;
    grid-gap: 24px;
    width: 1040px;
    margin: 0 auto 1.5rem;
}

footer>section:first-child span {
    width: 64px;
    display: inline-block;
}

footer>section:first-child>div:first-child>div:first-child {
    display: grid;
    grid-template-columns: 64px 1fr;
    grid-template-rows: 74px;
    align-items: center;
    margin-top: -4px;
}

footer>section:first-child>div:first-child>div:first-child>div:first-child {
    border-right: 1px solid var(--color-text-light);
}

footer>section:first-child>div:first-child>div:last-child ul {
    columns: 1;
    column-gap: 0;
    list-style: "➣  ";
    list-style-position: inside;
    padding: 0;
    width: 100%;
}

/* footer>section:first-child>div:first-child>div:last-child ul li::marker {
    font-size: 9px;
    position: relative;
    top: -3px;
} */

footer>section:first-child>div:first-child>div:last-child a {
    font-size: 12px;
    line-height: 2;
    text-transform: uppercase;
    margin-left: 4px;
}

/* footer>section:first-child>div {
    padding: 16px;
} */

footer>section:first-child>div>div>div>img {
    width: 54px;
    margin: 0;
}

footer>section:first-child>div>div.akreditasi {
    display: flex;
    flex-wrap: wrap;
}

footer>section:first-child>div>div.akreditasi a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 8px 0;
}

footer>section:first-child>div>div.akreditasi a img {
    max-height: 54px;
    object-fit: cover;
    margin: 0 16px 8px 0;
}

footer>section:first-child>div>div.akreditasi a span {
    line-height: 1;
    white-space: nowrap;
}


footer h3 {
    line-height: 1.1;
    white-space: nowrap;
    margin: 3px 0 0 10px;
    font-size: 14px;
    margin-top: .1rem;
    font-weight: 600;
}

footer h4 {
    margin: 0 0 .5rem;
    line-height: 1;
}

footer>section>div:first-child h3+h4 {
    margin: 0 0 .2rem;
    font-weight: 400;
}

footer p {
    line-height: 1.5;
}

footer ul {
    padding: 0;
    list-style: none;
}

footer ul li {
    margin-bottom: .2rem;
}

footer hr {
    border: none;
    border-bottom: 2px solid var(--color-text-light);
    margin-bottom: 1rem;
    opacity: .5;
}

footer a {
    color: var(--color-text-light);
    transition: .2s;
}

footer a:hover {
    color: var(--color-accent);
}

footer table {
    border-collapse: collapse;
    width: 100%;
}

footer table tr td {
    line-height: 1.2;
    padding: 4px 0;
}

footer table tr td:first-child {
    width: 94px;
}

footer table tr td:nth-child(2) {
    width: 12px;
}

footer table tr td:nth-child(3) {
    min-width: 170px;
}

/* footer .fab {
    margin-right: 10px;
    transition: .3s;
}

footer a:last-child .fab {
    margin-right: 0;
}

footer .fab:hover {
    transform: scale(1.08);
    color: var(--color-accent);
}

footer .fab:active {
    transform: scale(.99);
    transition: .1s;
    filter: brightness(.8);
} */

/* footer>section:nth-child(2) {
    font-size: 90%;
    opacity: .7;
} */

footer section:last-of-type {
    text-align: center;
}

footer section:last-of-type p {
    margin: 1em 0;
}

footer .info {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 220px 1fr;
    grid-gap: 16px;
    width: 100%;
}

footer .info strong {
    font-weight: 600;
    font-size: 108%;
}

footer .copyright {
    margin-top: 16px;
}

footer .copyright br {
    display: none;
}

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

time {
    display: block;
    opacity: .7;
    font-size: 85%;
    font-weight: 450;
    transition: .3s;
}

.icon {
    font-family: "Anicons Regular", sans-serif;
    cursor: pointer;
    font-size: 1.5rem;
}

.icon {
    font-variation-settings: "TIME" 1;
    transition: font-variation-settings .3s ease;
}

.icon:hover {
    font-variation-settings: "TIME" 100;
}

.open #menu.icon {
    font-variation-settings: "TIME" 100;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.swiper {
    width: 100%;
    height: auto;
}

.swiper a {
    color: var(--color-text);
}

/* #html5lightbox-watermark {
    display: none !important;
} */

hr {
    border: none;
    border-bottom: 2px solid var(--color-text-mute);
}

/* main hr {
    margin: 42px 0;
} */

img {
    max-width: 100%;
}

.two-cols {
    columns: 2;
    column-gap: 32px;
}

@media screen and (max-width:1144px) {
    .services>div {
        padding: 20px 16px;
    }
    .services>div>div {
        grid-gap: 16px;
    }
}

@media screen and (max-width:1080px) {

    /* body {
        background: rgba(255, 255, 255, .94);
    } */

    header>section:first-child {
        /* position: fixed; */
        width: 100%;
        /* position: fixed; */
        top: 0;
        height: 6px;
        transition: .1s;
        z-index: 20;
    }

    header>section.open:first-child {
        height: calc(var(--header-height) - 24px);
        font-size: .8rem;
    }

    header>section.open:first-child p {
        line-height: 1.2;
    }

    .up header>section:first-child {
        top: -24px;
        transition: .2s;
    }

    header>section.open:first-child {
        padding: 12px 0;
    }

    header>section.open:first-child span {
        display: none;
    }

    /* header>section.open:first-child br {
        display: block;
    } */

    header>section:first-child>div {
        /* flex-direction: column; */
        align-items: flex-start;
    }

    header>section:first-child>div>div:first-child {
        margin-bottom: .5rem;
        width: 100%;
    }

    header>section:first-child>div>div:first-child p {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    header>section:first-child>div>div:first-child p:nth-child(2) {
        width: calc(100vw - 110px);
    }

    header>section:first-child>div>div:last-child>a {
        display: none;
    }

    header>section.open:first-child>div>div:last-child>a {
        display: inherit;
    }

    header>section:last-child {
        /* top: 26px; */
        position: relative;
    }

    /* header>section:last-child br {
        display: block;
    } */

    header h2 {
        font-size: .78rem;
        margin-bottom: 2px;
    }

    .up header h2 {
        /* opacity: 0;
        margin-top: -100%; */
        position: fixed;
        top: 8px;
        font-size: .78rem;
        left: 50px;
        /* width: 216px; */
        font-weight: 700;
        color: var(--color-text-light);
    }

    header h1,
    header h3 {
        font-size: .6rem;
        line-height: 1;
    }

    .up header h1 {
        /* position: fixed;
        top: 10px;
        font-size: .89rem;
        left: 88px;
        width: 216px;
        font-weight: 700;
        color: var(--color-text-light); */
        opacity: 0;
        margin-top: -100%;
    }

    .up header.open h2 {
        opacity: 0;
        pointer-events: none;
    }

    .up header img {
        position: fixed;
        left: 50px;
        top: 6px;
        width: 32px;
        margin: 0 16px 0 0;
    }

    .up header img:first-of-type {
        opacity: 0;
        margin-top: -100%;
    }

    .up header.open img {
        opacity: 0;
        pointer-events: none;
    }

    header .flag {
        position: fixed;
        top: 30px;
        right: 16px;
        transition: .2s;
    }

    .up header .flag {
        top: -40px;
    }

    header .flag img {
        position: relative;
        margin: 0 0 0 8px;
        /* transition: .3s ease-out; */
    }

    .up header .flag img {
        opacity: 0;
        transform: translateY(-10px) scale(.7);
        width: 20px;
        left: 0;
        top: -20px;
        margin: 0 0 0 8px;
        /* transition-delay: 0; */
    }

    header .top-menu {
        display: none;
    }

    #search+button {
        top: 28px;
        right: 43px;
        height: 28px;
    }

    .up #search+button {
        display: none;
    }

    #search {
        opacity: 0;
        position: fixed;
        top: 75px;
        left: 50%;
        max-width: 10px;
        transform: translateX(-50%);
        text-align: center;
        height: 28px;
        /* background-color: rgba(0, 0, 0, .15); */
        /* background-color: var(--color-secondary-light); */
        /* color: var(--color-text-light); */
    }

    /* #search:focus { */
        /* background-color: rgba(0, 0, 0, .25); */
        /* background-color: var(--color-secondary); */
    /* } */

    .open #search {
        opacity: 1;
        max-width: calc(100vw - 120px);
    }

    /* .open #search+.icon {
        font-variation-settings: "TIME" 100;
    } */

    /* #search,
    #search+.icon {
        color: var(--color-text-light);
    } */

    #search+.icon:not(.clicked):hover {
        transform: none;
        margin: -5px 0 0 170px;
        font-variation-settings: "TIME" 1;
    }

    #search::placeholder {
        color: rgba(255, 255, 255, .5);
    }

    #search+.icon {
        position: fixed;
        top: 100px;
        right: 16px;
        margin: -5px 0 0 0;
        /* transition: .2s ease-in-out; */
    }

    /* #search+.icon:hover {
        margin: -45px 0 0 170px;
    } */

    #search+.icon.clicked {
        margin: -5px 0 0 170px;
    }

    .up #search+.icon {
        top: 101px;
    }

    .up #search {
        top: -2px;
    }

    .up #search+.icon {
        top: 7px;
    }

    /* .up #menu {
        top: 2px;
    } */

    /* main.full h1 {
        margin-top: 4rem;
    } */

    main, aside {
        padding: 0 var(--content-padding);
    }

    main h1 {
        font-size: 1.5em;
    }

    .banner-main article h2 {
        font-size: 1.5rem;
        margin: 0 0 0 10vw;
        max-width: 80vw;
        text-shadow: 0 2px 6px rgba(0,0,0,.4);
        display: none;
    }

    .banner-main article.video h2 {
        margin: 0
    }

    /* .banner-main img {
        height: 140px;
    } */

    .banner-main article div {
        height: 100%
    }

    article>.main {
        grid-template-columns: 1fr;
    }

    article>.main>.content {
        margin-top: calc(-1 * var(--content-padding));
    }

    article>.main>.content .menteri>img {
        width: 120px;
        height: 120px;
    }
    

    /* .ticker {
        top: calc(60vh + 3px);
        font-size: 0.9rem;
    }
    .up .ticker {
        top: calc(60vh - 89px);
    } */
    /* .news-top {
        top: calc(60vh + 69px);
        flex-wrap: wrap;
        font-size: 70%;
    }
    .up .news-top {
        top: calc(60vh - 23px);
    }
    .news-top a:before {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0) 80%);
    }
    .news-top article {
        height: 150px;
        flex-basis: 50%;
    }
    .news-top article:first-child {
        flex-basis: 100%
    }
    .news-top a:before {
        height: 150px;
    }
    .news-top img {
        height: 150px;
    }
    .news-top time {
        margin: .2rem 0 8px;
    } */
    /* .news-slide .swiper-button-next, .news-slide .swiper-button-prev {
        top: 22%;
    }
    .news-slide {
        width: calc(100vw - (2 * var(--content-padding)));
    }
    .news-slide article a {
        flex-direction: column;
        width: calc(100vw - (2 * var(--content-padding)));
    }
    .news-slide article img {
        width: 100%;
        height: 200px;
    }
    .news-slide article div {
        padding: var(--content-padding);
        height: 230px;
        justify-content: flex-start;
    }
    .news-slide article h2 {
        font-size: 1.2rem;
    } */


    /* .news-main {
        grid-template-columns: 1fr;
    }

    .news-main+p .btn {
        margin: 0px auto 0;
    }

    .news-main article div {
        padding-right: 0;
    }

    .news-main article a {
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }

    .news-grid,
    .news-grid.three-cols {
        grid-template-columns: auto auto;
    } */

    /* .news-grid.three-cols {
        grid-template-columns: auto;
    } */

    /* .tabs .news-grid {
        margin: 0;
    }

    .news-grid img {
        width: 100%;
        height: 120px;
        object-fit: cover;
    }

    .news-grid.list img {
        width: 120px;
        margin-right: 16px;
    }

    .news-grid article h2 {
        font-size: .92rem;
        line-height: 1;
    }

    .news-grid article time {
        font-size: 82%;
    }

    .bulletin-grid {
        grid-template-columns: 1fr 1fr;
    }

    .info-public {
        grid-template-columns: auto;
        margin-bottom: 0;
    }

    .info-public>.list {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        margin: 0 0 1.8rem;
        padding: 0 16px;
    }

    .info-public>.list>a>i {
        font-size: 2rem;
        width: 72px;
        height: 72px;
        grid-gap: 16px;
    }

    .info-public>.tabs input~.tab {
        height: auto;
    }

    .info {
        grid-template-columns: auto;
    }

    .gallery {
        grid-template-columns: auto auto;
    }

    .gallery figure,
    .gallery figure:before,
    .gallery img {
        height: 100px;
    }

    .links {
        grid-template-columns: auto;
    }

    .article-slide img {
        height: 200px;
    } */

    /* .filter-regulation fieldset div {
        width: 100%;
        grid-template-columns: auto;
    } */

    .tabbar {
        width: calc(100vw - 32px);
    }

    .two-cols {
        columns: auto;
    }

    /* main .pagination {
        width: 100%;
    }

    main .pagination ul {
        min-width: 80%;
    }

    main .pagination a,
    main .pagination span {
        margin: 0 2px;
        padding: 4px;
        min-width: 14px;
        text-align: center;
    } */

    footer>section:first-child {
        grid-template-columns: auto;
        width: 100%;
        margin-bottom: 1rem;
    }

    /* footer>section:first-child>div:not(:first-child),
    footer>section:not(:first-child){
        text-align: center;
    } */

    footer>section:first-child>div {
        max-width: 320px;
        min-width: 320px;
        margin: 12px auto 6px;
    }

    footer>section:first-child>div:first-child {
        grid-template-columns: 1fr;
        margin: auto;
    }

    footer>section:first-child>div {
        padding: 0;
    }

    footer>section:first-child>div:first-child,
    footer>section:first-child>div:nth-child(2) {
        border-right: none;
    }

    footer .socmed-icons {
        margin-top: -16px;
    }

    footer>section:first-child>div:first-child>div:last-child ul {
        columns: 1;
    }

    /* footer section:last-of-type br {
        display: block;
    } */

    footer section:last-of-type {
        padding-bottom: 32px;
    }

    footer .info {
        grid-template-columns: 1fr;
    }

    footer .copyright br {
        display: block;
    }
    

}

@media screen and (max-width:1024px) {
    article>.main>.content .menteri>img {
        width: 116px;
        height: 116px;
    }
}

@media screen and (max-width:780px) {
    .latest-news>div:first-child {
        grid-template-columns: 1fr;
    }
    .banner-bottom {
        grid-template-columns: 1fr;
    }
    article>.main>.content .menteri {
        /* position: relative;
        margin-top: 32px;
        width: 100%;
        display: grid; */
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr ;
        grid-gap: 8px;
    }
    
    /* article>.main>.content .menteri>img {
        width: 116px;
        height: 116px;
    } */
}

@media screen and (max-width:580px) {    
    .services>div>div>a {
        min-height: 154px;
        width: 132px;
    }
    .tabcontent>div {
        grid-template-columns: 1fr;
    }
    article>.main>.content .menteri {
        /* position: relative;
        margin-top: 32px;
        width: 100%;
        display: grid; */
        grid-template-columns: 1fr 1fr 1fr 1fr ;
        grid-gap: 8px;
    }
    
    article>.main>.content .menteri>img {
        width: 116px;
        height: 116px;
    }
}

@media screen and (max-width:480px) {
    .tabbar {
        grid-template-columns: 110px 110px 110px 110px 110px;
    }
    .tabbar a span {
        font-size: 12px;
    }

    article>.main>.nav,
    article>.main>.content {
        padding: var(--content-padding) 0;
    }

    article>.main>.content .menteri {
        /* position: relative;
        margin-top: 32px;
        width: 100%;
        display: grid; */
        grid-template-columns: 1fr 1fr 1fr ;
        grid-gap: 8px;
    }
    
    article>.main>.content .menteri>img {
        width: 132px;
        height: 132px;
    }
}

@media screen and (max-width:360px) {
    /* main .pagination {
        font-size: 90%;
    } */

    /* .bulletin-grid {
        grid-template-columns: 1fr;
    } */

    article>.main>.content .menteri>img {
        width: 94px;
        height: 94px;
    }
}

/* animation */

.blink-1 {
    -webkit-animation: blink-1 0.6s infinite both;
    animation: blink-1 0.6s infinite both;
}

/* animation keyframes */

/**
 * ----------------------------------------
 * animation blink-1
 * ----------------------------------------
 */
@-webkit-keyframes blink-1 {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

@keyframes blink-1 {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

#gpr-kominfo-widget-list {
    max-height: 570px !important;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
}

.goog-te-gadget>span {
    display: none !important;
}

#google_translate_element {
    transform: scale(.8);
    height: 20px;
    position: relative;
    top: -2px;
}

.goog-te-gadget .goog-te-combo {
    border-radius: 0 !important;
    margin: 0 0 !important;
    padding: 3px 48px 3px 14px !important;
    background-position: right 9px !important;
}


/* totop */
#totop {
    position: fixed;
    bottom: 80px;
    right: 16px;
    z-index: 9000;
    font-size: 42px;
    color: var(--color-text-light);
    background: var(--color-primary-bright);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 1;
    transition: .5s ease-in-out .5s;
}

#totop svg {
    transform: scale(.6);
}

#totop:active {
    transform: scale(.97);
    color: #fff;
    transition: transform .1s;
}

#totop.down {
    bottom: -60px;
}

#totop.up {
    opacity: 0;
}

/* panel */

.panel-title>a,.panel-title>a:active {
    display: block;
    padding: inherit;
    color: #000;
    font-weight: 700;
    text-transform: uppercase
}

.panel-heading a.collapsed:before {
    content: "\2b";
    float: right;
    transition: all .5s;
    font-size: 18px
}

.panel-heading a:before {
    content: "\2212";
    float: right;
    transition: all .5s;
    font-size: 18px
}

/* dalam halaman */
.unit-kerja {
    display: flex;
    justify-content: center;
}

.unit-kerja a {
    font-weight: 700;
    font-size: 13px;
    padding: 6px;
    border-right: 2px solid var(--color-primary-light);
}

.unit-kerja a:last-child {
    border-right: none;
}

@media screen and (max-width:1180px) {
    .unit-kerja {
        flex-wrap: wrap;
    }

    .unit-kerja a {
        padding: 6px 8px;
        border-right: none;
    }
}

/* helper */
.text-strong {
    font-weight: 700;
}

.color-primary {
    color: var(--color-primary);
}

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

.border-right {
    border-right: 2px solid var(--color-primary-light)
}

@media screen and (max-width:1080px) {
    .table-responsive {
        width: calc(100vw - 32px);
    }
}

/* flexbox */
/* Flex Display */
.d-flex {
    display: flex;
}

.d-inline-flex {
    display: inline-flex;
}

/* Flex Direction */
.flex-row {
    flex-direction: row;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-column {
    flex-direction: column;
}

.flex-column-reverse {
    flex-direction: column-reverse;
}

/* Flex Wrap */
.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse;
}

/* Justify Content */
.justify-content-start {
    justify-content: flex-start;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}

.justify-content-evenly {
    justify-content: space-evenly;
}

/* Align Items */
.align-items-start {
    align-items: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.align-items-center {
    align-items: center;
}

.align-items-baseline {
    align-items: baseline;
}

.align-items-stretch {
    align-items: stretch;
}

/* Align Self */
.align-self-start {
    align-self: flex-start;
}

.align-self-end {
    align-self: flex-end;
}

.align-self-center {
    align-self: center;
}

.align-self-baseline {
    align-self: baseline;
}

.align-self-stretch {
    align-self: stretch;
}

/* Align Content */
.align-content-start {
    align-content: flex-start;
}

.align-content-end {
    align-content: flex-end;
}

.align-content-center {
    align-content: center;
}

.align-content-between {
    align-content: space-between;
}

.align-content-around {
    align-content: space-around;
}

.align-content-stretch {
    align-content: stretch;
}

/* Flex Grow */
.flex-grow-0 {
    flex-grow: 0;
}

.flex-grow-1 {
    flex-grow: 1;
}

/* Flex Shrink */
.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-shrink-1 {
    flex-shrink: 1;
}

/* Flex Fill */
.flex-fill {
    flex: 1 1 auto;
}

/* Order */
.order-0 {
    order: 0;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
    order: 3;
}

.order-4 {
    order: 4;
}

.order-5 {
    order: 5;
}

.order-first {
    order: -1;
}

.order-last {
    order: 6;
}

/* Margin: All sides */
.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

/* Margin: Top */
.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

/* Margin: Bottom */
.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

/* Margin: Left */
.ms-0 {
    margin-left: 0 !important;
}

.ms-1 {
    margin-left: 0.25rem !important;
}

.ms-2 {
    margin-left: 0.5rem !important;
}

.ms-3 {
    margin-left: 1rem !important;
}

.ms-4 {
    margin-left: 1.5rem !important;
}

.ms-5 {
    margin-left: 3rem !important;
}

/* Margin: Right */
.me-0 {
    margin-right: 0 !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.me-4 {
    margin-right: 1.5rem !important;
}

.me-5 {
    margin-right: 3rem !important;
}

/* Margin: Horizontal */
.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
}

.mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
}

.mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}

.mx-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
}

.mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
}

/* Margin: Vertical */
.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}

.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

/* Auto Margin */
.m-auto {
    margin: auto !important;
}

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

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

/* Padding: All sides */
.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

/* Padding: Top */
.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

/* Padding: Bottom */
.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

/* Padding: Left */
.ps-0 {
    padding-left: 0 !important;
}

.ps-1 {
    padding-left: 0.25rem !important;
}

.ps-2 {
    padding-left: 0.5rem !important;
}

.ps-3 {
    padding-left: 1rem !important;
}

.ps-4 {
    padding-left: 1.5rem !important;
}

.ps-5 {
    padding-left: 3rem !important;
}

/* Padding: Right */
.pe-0 {
    padding-right: 0 !important;
}

.pe-1 {
    padding-right: 0.25rem !important;
}

.pe-2 {
    padding-right: 0.5rem !important;
}

.pe-3 {
    padding-right: 1rem !important;
}

.pe-4 {
    padding-right: 1.5rem !important;
}

.pe-5 {
    padding-right: 3rem !important;
}

/* Padding: Horizontal */
.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
}

.px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
}

/* Padding: Vertical */
.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* majalah */
.majalah {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 16px;
    text-align: center;
}

.majalah figure {
    max-width: 190px;
    cursor: pointer;
}

.majalah figcaption {
    font-size: 13px;
    margin-top: 6px;
    font-weight: 600;
}

.modal-majalah {
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 10000;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding: 0 16px 16px;
    border-radius: 10px;
    box-shadow: 0 0 16px rgba(0, 0, 0, .5);
}

.modal-majalah>div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-majalah>div:first-child svg {
    transform: scale(1.3);
    cursor: pointer;
}

.modal-majalah>div:nth-child(2) {
    display: flex;
}

.modal-majalah>div:nth-child(2) img {
    max-width: 25vw;
}

.modal-majalah>div:nth-child(2)>div {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-left: 12px;
    gap: 16px;
}

.modal-majalah>div:nth-child(2)>div>a {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 16px;
}

.modal-majalah>div:nth-child(2)>div>a>svg {
    transform: scale(1.8);
    margin-bottom: 12px;
}

.modal-majalah>div:nth-child(2)>div>a>span {
    font-size: 13px;
}

.modal-majalah>div:nth-child(3) small {
    line-height: 1.2;
    display: block;
    margin-top: 12px;
    color: var(--color-primary-light);
}

.modal-majalah-overlay {
    background: rgba(0, 0, 0, .7);
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
}

/* sub services */

.services>div>div>a.active {
    background: var(--color-primary-light);
    color: #fff;
    pointer-events: none;
}

.sub-services {
    background-color: var(--body-bg-color);
}

.sub-services>div {
    margin: auto;
    max-width: 1080px;
    color: var(--color-text);
    border-radius: 0 0 16px 16px;
    min-height: 155px;
}

.sub-services.icons>div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 32px;
}

.sub-services#pengaduan>div img {
    margin: 16px;
    transition: .2s;
}

.sub-services#pengaduan>div img:hover {
    transform: scale(1.05);
}

.sub-services.icons>div>a {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 12px;
    font-size: 12px;
    font-weight: bold;
    margin-top: 12px;
    color: #000;
    transition: .2s;
}

.sub-services.icons>div>a:hover {
    filter: saturate(1.5);
    transform: scale(1.05);
}

.sub-services.icons>div>a>img {
    width: 72px;
}

/* Enhanced Counter Styling - modern card, subtle shadow, gloss, and animated count effect */

.counter {
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(40, 80, 30, 0.13), 0 1px 2px rgba(0, 0, 0, 0.04);
  padding: 0;
  max-width: 340px;
  overflow: hidden;
  position: relative;
  animation: counterCardIn 1s cubic-bezier(.44,.26,.81,.79);
}

@keyframes counterCardIn {
  from { opacity: 0; transform: translateY(30px) scale(.97);}
  to { opacity: 1; transform: translateY(0) scale(1);}
}

.counter h3 {
  color: #f5fce8;
  margin: 0;
  padding: 18px 26px 10px 26px;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 1px 2px rgba(40,80,30,0.09);
}

.counter h3 i {
  font-size: 0.8rem;
}

.counter .p-2 {
  padding: 18px 24px 18px 24px;
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  /* subtle gloss effect */
  overflow: hidden;
}

.counter .p-2::before {
  content: "";
  display: block;
  position: absolute;
  top: -18px; left: 0; right: 0;
  height: 30px;
  background: linear-gradient(90deg, rgba(255,255,255,0.14), rgba(255,255,255,0.02) 80%);
  pointer-events: none;
}

.counter .p-2 > div {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 12px;
}

.counter .p-2 p {
  color: #f4fde5;
  margin: 0;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  flex: 1 1 0;
  letter-spacing: 0.4px;
  padding-bottom: 3px;
}

.counter .p-2 p strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 4px;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.16), 0 1px 0 #44c544;
  animation: counterUp 1.2s cubic-bezier(.44,.26,.81,.79);
}

@keyframes counterUp {
  from { opacity: 0; transform: scale(.8) translateY(12px);}
  to { opacity: 1; transform: scale(1) translateY(0);}
}

/* Responsive for mobile */
@media (max-width: 500px) {
  .counter {
    max-width: 98vw;
    font-size: 96%;
  }
  .counter .p-2 {
    padding: 12px 8px 12px 8px;
  }
}

/* Optional: add hover effect for interactive feel */
.counter:hover {
  box-shadow: 0 8px 32px rgba(40,80,30,0.17), 0 2px 8px rgba(0,0,0,0.06);
  transform: scale(1.02);
  transition: box-shadow 0.3s, transform 0.3s;
}

.counter h3:hover i {
  filter: brightness(1.2) drop-shadow(0 1px 3px #b2ff9e);
  transition: filter 0.3s;
}

.shadow {
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* bayangan ringan */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shadow2 {
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* bayangan ringan */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shadow3 {
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* bayangan ringan */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shadow4 {
  padding: 1px 6px;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* bayangan ringan */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

ul.text-white {
  display: flex;
  gap: 8px; /* jarak antar menu */
  list-style: none; /* hilangkan bullet */
  padding: 0;
  margin: 0;
}

.tablinks img {
  filter: brightness(0) saturate(100%);
}