* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
}

.container-navbar {
    background-color: #333;
    width: 100%;
    height: 10vh;
    gap: 0;
    position: fixed;
    z-index: 2;
    justify-content: center;
    margin-left: auto;
    margin-bottom: 0;
    bottom: 0;
    top: 0;
}

.img-navbar {
    width: 13rem;
    height: 3.8rem;
    margin-top: 30px;
    display: flex;
    left: 5px ;
    transform: translateY(-50%);
    object-fit: contain;
    box-sizing: border-box;
    float: left;
    text-align: center;
}

.ul-navbar {
    display: flex;
    height: 60px;
    justify-content: right;
    align-items: center;
    z-index: 3;
    float: right;
}

.li-navbar {
    list-style-type: none;
    padding: 0.5rem;
    color: #fff;
    font-size: 18px;
    font-family: fantasy;
    margin: 1px;
    position: relative;
}


.a-navbar {
    color: #fff;
    text-decoration: none;
    padding: 5px;
}

.a-navbar:hover {
    transition-delay: .1s;
    border-radius: 5px;
    background-color: #378d33;
    transition: .1s ease-in-out;
    padding: 5px;
}

.navbar-down {
    position: absolute;
    background-color: white;
    padding: 5px;
    left: 0;
    display: none;
    text-wrap: nowrap;
    box-shadow: 0 2px 2px #378d33;
    border-radius: 3px;
    margin-top: 7px;
    margin-left: 8px;
    width: 180px;
}

.navbar-down.navbar-expand {
    display: block;
}

.navbar-part {
    list-style-type: none;
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 0.05px solid #e7e7e7;
}

.navbar-part:hover {
    background-color: #388d33e8;
    border-radius: 5px;
    color: #fff;
}

.navbar-list {
    color: #333;
    list-style-type: none;
    text-decoration: none;
    font-family: fantasy;
    font-size: 15px;
    margin: 1px;
    padding-bottom: 10px;
    padding-left: 2px;
}

.navbar-list:hover {
    transition: .05s ease;
    color: #fff;
}

.navbar-data {
    position: absolute;
    background-color: white;
    padding: 5px;
    left: 0;
    display: none;
    text-wrap: nowrap;
    box-shadow: 0 2px 2px #378d33;
    border-radius: 3px;
    margin-left: 90px;
    text-decoration: none;
    color: #333;
    margin-top: 0;
    top: 0;
    width: 180px;
}


.navbar-data.navbar-expand {
    display: block;
}


.navbar-datapart {
    list-style-type: none;
    text-decoration: none;
    padding-bottom: 5px;
    color: #333;
    border-bottom: 0.05px solid #e7e7e7;
}

.navbar-datapart:hover {
    background-color: #388d33e8;
    border-radius: 5px;
    color: #fff;
    padding: 2px;
}

.navbar-partlist {
    list-style-type: none;
    text-decoration: none;
    padding-bottom: 5px;
    font-size: 15px;
    color: #333;
}

.navbar-partlist:hover {
    border-radius: 5px;
    color: #fff;
    padding: 2px;
}

.container-konten {
    justify-content: center;
    align-items: center;
    margin-right: 300px;
    width: 100%;
    height: 100%;
    padding: 10px;
}

.container-konten2 {
    margin-top: 100px;
    justify-content: center;
    align-items: center;
    margin-right: 300px;
    width: 100%;
    height: 100%;
    padding: 10px;
}

.slider-container {
    background-color: #333;
    width: 50%;
    height: 50%;
    isolation: isolate;
    margin-left: auto;
    margin-right: auto;
    display: flex; 
    margin-bottom: 12px;
    border-radius: 5px;
}

.slider-container .slider-item {
    width: 50%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    transition: opacity 3s;
    margin-bottom: 2px;
    border-radius: 5px;
}

.slider-container .slider-item[data-show="show"] {
    opacity: 1;
}

.slider-container .slider-item[data-show="hidden"] {
    z-index: -1;
    opacity: 0;
}

.slider-container .slider-item::before {
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: linear-gradient(to top, black, rgba(0, 0, 0, 0.452), transparent);
    border-radius: 5px;
}

.slider-container .slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.slider-item .slider-content {
    position: absolute;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    border-radius: 5px;
}

.slider-content .slider-title {
    font-size: 1.7rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 40px;
    text-wrap: 2px;
}

.slider-content .slider-action {
    color: #333;
    border: 1px solid white;
    padding: 0.5rem 1rem;
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 20px;
    width: fit-content;
    position: relative;
    justify-content: left;
    align-items: center;
    isolation: isolate;
    font-family: fantasy;
    background-color: #fff;
    border-radius: 80px;
}

.slider-content .slider-action::before {
    content: "";
    background-color: #378d33;
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 0;
    transition: all 700ms;
    border-radius: 80px;
}

.slider-content .slider-action:hover {
    color: white;
    font-family: fantasy;
}

.slider-content .slider-action:hover::before {
    width: 100%;
}

.slider-news {
    color: white;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 2px;
    line-height: 20px;
    width: fit-content;
    justify-content: right;
    align-items: center;
    font-family: fantasy;
    border: 2px solid #333;
    padding: 0.5rem 1rem;
    text-align: center;
    margin-left: 338px;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 1px 1px #333;
}

.slider-news:hover {
    color: white;
    font-family: fantasy;
    border: 2px solid white;
    background-color: #378d33;
    border-radius: 10px;
}

.judul-berita {
    position: relative;
}

marquee {
    width: 50%;
}

.berita-jalan {
    background-color: white;
    color: #378d33;
    font-size: 50px;
    font-family: fantasy;
    justify-content: center;
    align-items: center;
    text-align: left;
    display: flex;
    margin-bottom: 2px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
}

.berita-img {
    border-radius: 5px;
    height: 40%;
    width: 22%;
    margin-left: 10px;
    object-fit: cover;
}


.title-container {
    font-family: fantasy;
    background-color: #378d33;
    color: #ffffff;
    font-size: 50px;
    text-align: center;
    margin-top: 40px;
}

.title-container2 {
    font-family: fantasy;
    color: #333;
    font-size: 50px;
    text-align: center;
}

.icon {
    font-size: 24px;
    display: none;
    color: white;
    font-weight: bold;
    justify-content: right;
    margin-left: 95%;
    margin-top: 20px;
    margin-right: 10px;
}

.icon2 {
    display: none;
}

.deskripsi{
    margin-top: 0;
}

.arr {
    height: 100%;
    width: 100%;
    position: relative;
}

.arr div {
    position: absolute;
    border-top: 8px solid white;
    border-left: 8px solid white;
}

.struktur {
    width: 90%;
    height: 90%;
    margin-bottom: 20px;
}

.struktur img {
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 3px;
    box-shadow: 0 3px 3px #333;
    display: flex;
    margin-left: 65px;
}


.sejarah {
    padding: 0 5rem 5rem;
    position: relative;
    margin-top: 10px;
    align-items: center;
    height: 90%;
    overflow: auto;
}

.sejarah-deskripsi {
    text-align: justify;
    line-height: 1.5rem;
    margin-bottom: 10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.sejarah-title {
    text-align: center;
    margin-bottom: 20px;
    background-color: #378d33;
    color: white;
    border: #333;
    border-radius: 5px;
    border-width: 4px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.list-deskripsi {
    text-align: justify;
    line-height: 1.5rem;
    margin-left: 20px;
    margin-bottom: 10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}


title {
    width: 100%;
    height: 50%;
}


.judul-web {
    padding-top: 180px;
    margin-bottom: 40px;
    color: #179911;
    font-family: fantasy;
    display: flex;
    font-size: 100px;
    text-align: center;
    flex-direction: column;
    position: absolute;
    justify-content: center;
    z-index: 1;
    width: 100%;
    align-items: center;
    -webkit-text-stroke: #fff 0.5px;
    text-shadow: 0px 4px 4px rgba(255, 255, 255, 0.747);
}

.judul-web2 {
    margin-top: 300px;
    margin-bottom: 40px;
    color: #fff;
    font-family: fantasy;
    display: flex;
    font-size: 80px;
    text-align: center;
    flex-direction: column;
    position: absolute;
    justify-content: center;
    z-index: 1;
    width: 100%;
    align-items: center;
    -webkit-text-stroke: #179911 0.1px;
    text-shadow: 0px 4px 4px rgba(255, 255, 255, 0.747);
}

.judul-web3 {
    margin-top: 400px;
    margin-bottom: 40px;
    color: #fff;
    font-family: fantasy;
    display: flex;
    font-size: 20px;
    text-align: center;
    flex-direction: column;
    position: absolute;
    justify-content: center;
    z-index: 1;
    width: 100%;
    align-items: center;
    -webkit-text-stroke: #393f39 0.1px;
}

.judul-subjudul {
    margin-top: 80px;
    color: #179911;
    font-family: fantasy;
    display: flex;
    font-size: 50px;
    text-align: center;
    flex-direction: column;
    position: absolute;
    justify-content: center;
    z-index: 1;
    width: 100%;
    align-items: center;
    -webkit-text-stroke: #fff 0.5px;
    text-shadow: 0px 4px 4px rgba(255, 255, 255, 0.747);
}

.title-content::before{
    width: 100%;
    height: 80%;
    content: " ";
    background-image: linear-gradient(to top, black, rgba(0, 0, 0, 0.295), transparent);
    position: absolute;
    margin: 0;
}

.title-content-subjudul::before{
    width: 100%;
    height: 20%;
    content: " ";
    background-image: linear-gradient(to top, black, rgba(0, 0, 0, 0.295), transparent);
    position: absolute;
    margin: 0;
}

.judul {
    margin-bottom: 0;
    padding-bottom: 0;
}

.judul-img {
    width: 100%;
    height: 80%;
    margin: 0;
}

.subjudul-img {
    width: 100%;
    height: 20%;
}

.box {
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    justify-content: center;
    display: flex;
}

.box img {
    border-radius: 100px;
    border: 1px solid black;
    height: 100px;
}


.box .h3 {
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.box button {
    padding: 10px;
    width: 150px;
    border-radius: 100px;
    background-color: #333;
    color: white;
}

.box button:hover {
    background-color: white;
    color: #333;
    padding: 10px;
    width: 150px;
    border-radius: 100px;
    border: 2px solid #333;
    transition: .1s ease-in-out;
}

.box-kiri, .box-kanan, .box-tengah {
    width: 400px;
    height: 220px;
    background-color: #f0f0f0;
    text-align: center;
    margin: 0 20px 20px 30px;
    border-radius: 10px;
    float: left;
    padding: 20px 10px;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 4px #333;
}

.box-kiri:hover, .box-kanan:hover, .box-tengah:hover {
    background-color: #378d33;
    border-radius: 10px;
    color: white;
}

.box-kepala {
    width: 400px;
    height: 440px;
    background-color: #378d33;
    text-align: center;
    margin: 0 20px 20px 30px;
    border-radius: 10px;
    float: left;
    padding: 20px 10px;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 4px #333;
}

.box-kepala img {
    border-radius: 10px;
    height: 285px;
    border: 2px solid #378d33;
    background-color: white;
}

.box-kepala .h2 {
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: medium;
    color: white;
}

.box-kepala .h3 {
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: white;
    border-top: 5px solid white;
    padding-top: 10px;
}

.box-Kepala .h4 {
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: smaller;
    color: black;
}

.box-sekretaris {
    width: 220px;
    height: 320px;
    background-color: #f0f0f0;
    text-align: center;
    margin: 20px 20px 20px 30px;
    border-radius: 10px;
    float: left;
    padding: 20px 10px;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 4px #333;
}

.box-sekretaris img {
    border-radius: 100px;
    height: 140px;
    border: 2px solid #378d33;
    background-color: white;
}

.box-sekretaris .h2 {
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: medium;
    color: #378d33;
}

.box-sekretaris .h3 {
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: small;
    border-top: 1px solid black;
    padding-top: 10px;
}

.box-sekretaris .h4 {
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: smaller;
}

.box-Kasubag {
    width: 220px;
    height: 320px;
    background-color: #f0f0f0;
    text-align: center;
    margin: 20px 20px 20px 30px;
    border-radius: 10px;
    float: left;
    padding: 20px 10px;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 4px #333;
}

.box-Kasubag img {
    border-radius: 100px;
    height: 140px;
    border: 2px solid #378d33;
    background-color: white;
}

.box-Kasubag .h2 {
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: medium;
    color: #378d33;
}

.box-Kasubag .h3 {
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: small;
    border-top: 1px solid black;
    padding-top: 10px;
}

.box-Kasubag .h4 {
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: smaller;
}

.box-Kabid {
    width: 220px;
    height: 320px;
    background-color: #f0f0f0;
    text-align: center;
    margin: 20px 20px 20px 30px;
    border-radius: 10px;
    float: left;
    padding: 20px 10px;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 4px #333;
}

.box-Kabid img {
    border-radius: 100px;
    height: 120px;
    border: 2px solid #378d33;
    background-color: white;
}

.box-Kabid .h2 {
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: medium;
    color: #378d33;
}

.box-Kabid .h3 {
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: small;
    border-top: 1px solid black;
    padding-top: 10px;
}

.box-Kabid .h4 {
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: smaller;
}

.menunggu {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 60%;
    margin-top: 100px;
    margin-bottom: 100px;
    margin-left: 380px;
    display: flex;
}

.container-konten .aset {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 580px;
    height: 650px;
    margin-bottom: 100px;
    margin-left: 375px;
    display: flex;
    margin-top: 0;
}

.container-konten .namaAset {
    margin-bottom: 0;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: small;
}

.container-konten2 .aset {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 580px;
    height: 650px;
    margin-bottom: 100px;
    margin-left: 375px;
    display: flex;
    margin-top: 0;
}

.container-konten2 .namaAset {
    margin-bottom: 0;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: small;
}

.container {
    margin-top: 0;
}

.maps-footer {
    margin-left: 100%;
    margin-right: 30%;
    margin-top: 0;
    position: absolute;
}

.maps-footer iframe {
    height: 130px;
    width: 200px;
    justify-content: center;
    align-items: center;
    position: static;
    display: flex;
    box-shadow: 0px 4px 4px #333;
    text-align: center;
    left: 81%;
    border-radius: 20px;
    align-items: center;
}

.maps-footer h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-wrap: initial;
}

.maps-footer p {
    font-size: 10px;
    color: white;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-top: 5px;
    text-align: center;
}

.a-navbar2 {
    color: #378d33;
    text-decoration: none;
    background-color: white;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-top: 5px;
    border-radius: 2px;
}

.a-navbar2:hover{
    color: white;
    background-color: #378d33;
}

.footer p{
    font-family: calibri;
}
 
.footer p:nth-child(1){
    font-size: 30px;
    font-weight:bold;
    color:#FFFFFF;
    line-height:10px;
}
 
.footer p:nth-child(2){
    font-size: 16px;
    color:#ffffff;
    width:600px;
    text-align: center;
}
 
.footer{
    height:250px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    display: flex;
    background-color: #378d33;
    margin-top: 20px;
}
 
.social-icons .a-info-other{
    width:40px;
    height:40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:#e6e3e3;
    margin:20px 10px;
    border-radius:50%;
}

.social-icons .a-info{
    width:210px;
    height:40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:#e6e3e3;
    margin:20px 10px;
    border-radius:20pt;
    text-decoration: none;
}

.social-icons .info{
    width:200px;
    height:40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin:20px 10px;
    border-radius:20pt;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-style: normal;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 10pt;
}
 
.social-icons{
    display: flex;
    position: relative; 
}
 
.social-icons i,.social i{
    color:#000000;
}
 
.social-icons a:hover{
    background-color:#000000;
    box-shadow:2px 2px 12px rgba(0,0,0,0.2);
    transition:all ease 0.5s;
}
 
.social-icons a:hover i,
.social a:hover i{
    color:#fff;
    transition:all ease 0.5s;
}
  
.copyright{
    color:rgb(214, 213, 213);
    font-size: 15px;
    position: absolute;
    left:50%;
    bottom:10px;
    transform: translateX(-50%);
}
.social{
    position: fixed;
    top:60%;
    right:0px;
    transform:translateY(-50%);
}
 
.social a{
    display: flex;
    justify-content: center;
    align-items: center;
    width:50px;
    height:50px;
    margin:0px;
    padding: 0px;
    line-height:0px;
    background-color:#FFFFFF;
    border:1px solid #CBCBCB;
    box-shadow:2px 2px 12px rgba(0,0,0,0.2);
}
 
.social a:hover{
    background-color:#378d33;
    transition:all ease 0.5s;
    color: #fff;
}
 
.social i{
    font-size:20px;
    color:#2B2B2B;
}


.elementor-1764 .elementor-element.elementor-element-a028b32.e-con {
    --flex-grow: 0;
    --flex-shrink: 0;
}

.elementor-1764 .elementor-element.elementor-element-a028b32:not(.elementor-motion-effects-element-type-background), .elementor-1764 .elementor-element.elementor-element-a028b32 > .elementor-motion-effects-container > .elementor-motion-effects-layer {
    background-color: #CDDBD7;
}

.elementor-1764 .elementor-element.elementor-element-a028b32 {
    --display: flex;
    --flex-direction: row-reverse;
    --container-widget-width: calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );
    --container-widget-height: 100%;
    --container-widget-flex-grow: 1;
    --container-widget-align-self: stretch;
    --flex-wrap-mobile: wrap-reverse;
    --align-items: stretch;
    border-style: none;
    --border-style: none;
}

.elementor-shape-elementor-shape-bottom {
    margin-bottom: 10px;
}


canvas {
    justify-content: center;
    align-items: center;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
    height: 1000px;
    position: relative;
    padding: 10px;
    overflow-x: hidden;
    overflow-y: auto;
}

script .canvas-data {
    width: 500px;
    height: 500px;
}

.data-down{
    position: relative;
    background-color: white;
    padding: 5px;
    left: 0;
    display: none;
    text-wrap: nowrap;
    box-shadow: 0 2px 2px #378d33;
    border-radius: 3px;
    margin-top: 7px;
    margin-left: 8px;
}


.sidebar {
    position: absolute;
    margin-top: 0;
    margin-bottom: 500px;
    width: 180px;
    left: -180px;
    height: 60vh;
    overflow-y: auto;
    transition: all 0.5s ease;
}

.sidebar .text {
    color: white;
    font-size: 15px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    background-color: #378d33;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    align-items: center;
    border-bottom: 1px solid black;
}

.sidebar ul {
    background-color: rgb(228, 227, 227);
    list-style: none;
}

.sidebar ul li {
    line-height: 40px;
    border-bottom: 1px solid black;
    display: block;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    align-items: center;
}

.sidebar ul:last-child {
    border-bottom: 1px solid transparent;
}

.sidebar ul li a {
    color: black;
    position: relative;
    text-decoration: none;
    font-size: 13px;
    padding-left: 10px;
    font-weight: 500;
    display: block;
    width: 100%;
    border-left: 10px solid transparent;
}

.sidebar ul li a:hover {
    color: #378d33;
    background-color: white;
    border-left-color: #378d33;
}

.sidebar ul li.active a {
    color: black;
    background-color: white;
}

.sidebar ul ul {
    position: static;
    display: none;
}

.sidebar ul .eko-show.show{
    display: block;
}

.sidebar ul .infra-show.show1{
    display: block;
}

.sidebar ul .SDA-show.show2{
    display: block;
}

.sidebar ul ul li {
    line-height: 40px;
    border-bottom: none;
}

.sidebar ul ul li a {
    font-size: 12px;
    color: #1e1e1e;
    padding-left: 20px;
    line-height: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.sidebar ul li.active ul li a {
    color: #1e1e1e;
    background-color:  rgb(228, 227, 227);
}

.sidebar ul ul li a:hover {
    color: #378d33!important;
    background-color: white!important;
}

.sidebar ul li a i {
    color: black;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 15px;
    transition: transform 0.4s;
}

.sidebar ul li a i.rotate {
    transform: translateY(-50%) rotate(-180deg);
}

.table-data {
    text-align: center;
    display: block;
    width: auto;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: small;
}

.table-content {
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: auto;
    margin-left: 200px;
}

.th-nodata {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px;
    width: 10px;
    border: 1px solid black;
    background-color: #179911;
}

.th-uraiandata {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px;
    width: 300px;
    border: 1px solid black;
    background-color: #179911;
}

.th-uraiandata2 {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px;
    width: 200px;
    border: 1px solid black;
    background-color: #179911;
}

.th-data {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px;
    width: 100px;
    border: 1px solid black;
    background-color: #179911;
}

.th-data2 {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px;
    width: 400px;
    border: 1px solid black;
    background-color: #179911;
}

.td-data {
    padding: 10px;
    text-wrap: 10px;
    border: 1px solid black;
}

.td-datalast {
    padding: 10px;
    text-wrap: 10px;
    border: 1px solid black;
    font-weight: bold;
}

.td-data2 {
    padding: 10px;
    text-wrap: 10px;
    border: 1px solid black;
    text-align: left;
}

.td-data3 {
    padding: 10px;
    text-wrap: 10px;
    border: 1px solid black;
    text-align: right;
}

.tr-data:hover {
    padding: 10px;
    text-wrap: 10px;
    border: 1px solid black;
    background-color: #c7c7c7;
}

.tr-data:nth-child(even) {
    background-color: rgb(187, 233, 165);
}
.tr-data:nth-child(even):hover {
    background-color: #c7c7c7;
}

table .caption {
    position: relative;
    display: flex;
    justify-content: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bold;
    width: auto;
}

table .caption2 {
    width: 100%;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bold;
    text-align: center;
    align-items: center;
}

table .caption3 {
    width: 100%;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bold;
    text-align: center;
}

.table-daftar {
    width: 100%;
    height: 100%;
    margin-left: 270px;
    overflow-x: auto;
    overflow-y: auto;
    justify-content: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    display: block;
}

.th-namapegawai {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px;
    width: 300px;
    border: 1px solid black;
    background-color: #179911;
    border-radius: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: medium;
}

.th-pangkat {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px;
    width: 200px;
    border: 1px solid black;
    background-color: #179911;
    border-radius: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: medium;
}

.th-jabatan {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px;
    width: 400px;
    border: 1px solid black;
    background-color: #179911;
    border-radius: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: medium;
}

.td-pegawai {
    padding: 10px;
    text-wrap: 10px;
    border: 1px solid black;
    border-radius: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: small;
}

.tr-pegawai:hover {
    padding: 10px;
    text-wrap: 10px;
    border: 1px solid black;
    border-radius: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: small;
    background-color: #a7f1a3;
}

.th-dokumen {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px;
    width: 300px;
    border: 1px solid black;
    background-color: #179911;
    border-radius: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: medium;
}

.th-tanggal {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px;
    width: 200px;
    border: 1px solid black;
    background-color: #179911;
    border-radius: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: medium;
}

.th-unduh {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px;
    width: 400px;
    border: 1px solid black;
    background-color: #179911;
    border-radius: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: medium;
}

.td-dokumen {
    padding: 10px;
    text-wrap: 10px;
    border-bottom: 1px solid black;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: small;
}

.td-tanggal {
    padding: 10px;
    text-wrap: 10px;
    border-bottom: 1px solid black;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: small;
}

.td-unduh {
    padding: 10px;
    text-wrap: 10px;
    border-bottom: 1px solid black;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: small;
    text-decoration: underline;
    text-align: center;
    justify-content: center;
}

.td-unduh:hover {
    background-color: #5bf353;
}

#check {
    display: none;
}

label #btn,label #cancel {
    position: relative;
    cursor: pointer;
    background: #378d33;
    border-radius: 2px;
}

label #btn {
    left: 10px;
    top: 50px;
    font-size: 30px;
    color: white;
    padding: 6px 6px;
    transition: all 0.5s ;
    width: 130px;
    box-shadow: 0px 4px 4px #333;
}

label #cancel {
    z-index: 1111;
    left: -180px;
    top: 6px;
    font-size: 20px;
    color: #000000;
    padding: 4px 4px;
    transition: all 0.5s ease;
}

#check:checked ~ .sidebar{
    left: 0;
}

#check:checked ~ label #btn{
    left: 180px;
    opacity: 0;
    pointer-events: none;
}

#check:checked ~ label #cancel{
    left: 40px;
}

label i a {
    margin-left: 5px;
    font-size: 28px;
    justify-content: center;
    align-items: center;
}

.judul-berita {
    justify-content: center;
    align-items: center;
    display: flex;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #179911;
    margin-bottom: 3px;
}

.tanggal-berita {
    color: #424242;
    margin-bottom: 2px;
}

.penulis {
    border-left: 2px solid black;
    padding-left: 5px;
    margin: auto;
    color: #696767;
    margin-bottom: 10px;
}

.sumber {
    padding-left: 5px;
    margin: auto;
    color: #696767;
    margin-bottom: 10px;
    text-decoration: none;
}

.sumber:hover {
    padding-left: 5px;
    margin: auto;
    color: black;
    margin-bottom: 10px;
    text-decoration: underline;
}

.sumber-1 {
    margin: auto;
    color: #696767;
    margin-bottom: 10px;
}

.berita-top {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 70%;
    margin: auto;
    box-shadow: 0px 2px 2px #333;
    border-radius: 3px;
    margin-bottom: 20px;
}

.berita-pic {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: 53%;
    margin: auto;
    box-shadow: 0px 2px 2px #333;
    border-radius: 3px;
    margin-bottom: 20px;
}

.berita {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 14px;
    text-align: justify;
    margin-left: 30px;
    margin-bottom: 20px;
    border-radius: 4px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
    width: 1000px;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px;
    color: #000000;
}

.berita p {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 30px;
    margin-right: 30px;
}

.berita ol {
    margin-left: 60px;
    margin-right: 60px;
}

.berita10-ol2 {
    margin-left: 10px;
}

.berita-card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 70px;
}

.berita-card {
    width: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
    margin: 20px;
    color:#333;
}

.berita-card:hover {
    background-color: #179911;
    color: white;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
    width: 420px;
}

.berita-card img {
    width: 100%;
    height: auto;
}

.berita-card-content {
    padding: 16px;
}

.berita-card-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.berita-card-content p {
    font-size: 12px;
    line-height: 1.3;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: justify;
}

.berita-card-content p:hover {
    font-size: 12px;
    line-height: 1.3;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: white;
    text-align: justify;
}

.berita-card-content .berita-card-btn {
    display: inline-block;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 16px;
    margin-bottom: 0px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
    font-size: 10px;
    color: white;
    background-color: #179911;
    width: 150px;
    height: 15px;
    text-align: center;
    border: 1px solid white;
}

.berita-card-content .berita-card-btn:hover {
    text-decoration: underline;
    color: #179911;
    background-color: white;
}

.counter-box {
    margin-left: 90px;
    text-align: center;
    padding: 20px;
    font-family: Arial, sans-serif;
    }
.counter-number {
      font-size: 48px;
      font-weight: bold;
      color: #333;
    }

@media screen and (max-width: 1200px) {
    * { margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    html {
        margin: 0;
        padding: 0;
    }

    html, body {
        overflow-x: hidden;
        overflow-y: auto;
        min-height: 100vh;
    }

    .container-navbar {
        background-color: #333;
        width: 100%;
        height: 10vh;
        gap: 0;
        position: fixed;
        z-index: 2;
        justify-content: center;
        margin-left: auto;
        margin-bottom: 5px;
        bottom: 0;
        top: 0;
    }
    
    .img-navbar {
        width: 7rem;
        height: 3rem;
        display: flex;
        align-items: center;
    }

    .ul-navbar {
        flex-wrap: wrap;
        display: none;
    }

    .datastatistik {
        display: none;
    }

    .list2 {
        flex-wrap: wrap;
        display: none;
    }

    ul .li-navbar {
        flex-direction: column;
        justify-content: center;
        background-color: #333;
        align-items: center;
        text-align: left;
        justify-content: center;
        margin: 0;
        border-bottom: solid 1px white;
    }


    .a-navbar {
        justify-content: center;
        align-items: center;
    }

    .navbar-part {
        justify-content: center;
        align-items: center;
    }

    .navbar-down {
        z-index: 3;
        align-items: center;
        position: relative;
        margin: 1px;
        padding: 0;
    }

    .icon {
        display: flex;
        align-items: center;
        margin-bottom: 8px;
    }

    .title-container {
        font-family: fantasy;
        background-color: #378d33;
        color: #ffffff;
        font-size: 20px;
        text-align: center;
        margin-top: 10px;
        padding-top: 50px;
    }

    .title-container2 {
        font-family: fantasy;
        color: #333;
        font-size: 30px;
        text-align: center;
    }

    .tdr-table {
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        border-bottom: 1px solid #333;
        text-align: left;
        font-size: 12px;
    }

    .tr-table {
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        background-color: #378d33;
        color: white;
        font-size: 12px;
    }

    .berita-img {
        border-radius: 5px;
        height: 15%;
        width: 15%;
        margin-left: 10px;
        object-fit: cover;
    }

    .judul-berita {
        font-size: 15px;
        text-align: left;
        margin-left: 10px;
    }

    .struktur {
        position: relative;
        overflow-x: scroll;
        overflow-y: scroll;
        width: 100%;
        height: 100%;
        cursor: zoom-in;
    }

    .struktur img {
        width: 1000px;
        height: 700px;
        justify-content: center;
        align-items: center;
        margin-top: 100px;
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 100px;
        display: flex;
    }

    marquee {
        width: 90%;
    }

    .slider-item .slider-content {
    position: absolute;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-wrap: 2px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    .slider-container {
    background-color: #333;
    width: 80%;
    height: 40%;
    isolation: isolate;
    margin-left: auto;
    margin-right: auto;
    display: flex; 
    margin-bottom: 10px;
    }

    .slider-container .slider-item {
    width: 79%;
    height: 39%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    transition: opacity 3s;
    margin-bottom: 2px;
    }

    .slider-content .slider-title {
    font-size: 1rem;
    line-height: 20px;
    }

    .deskripsi{
    margin-top: 0;
    margin-left: 10px;
    }

    .sejarah {
    padding: 2rem;
    position: relative;
    margin-top: 4rem;
    align-items: center;
    height: 90%;
    overflow: auto;
    }

    .sejarah-deskripsi {
    text-align: justify;
    line-height: 1.2rem;
    margin-bottom: 10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 12px;
    }

    .list-deskripsi {
    text-align: justify;
    line-height: 1.2rem;
    margin-bottom: 10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 12px;
    }

    .sejarah-title {
    text-align: center;
    margin-bottom: 20px;
    background-color: #378d33;
    color: white;
    border: 1px solid #333;
    border-radius: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    }

    title {
    width: 50%;
    height: 100%;
    }   


    .judul-web {
    margin-top: 50px;
    margin-bottom: 40px;
    color: #179911;
    font-family: fantasy;
    display: flex;
    font-size: 40px;
    text-align: center;
    flex-direction: column;
    position: absolute;
    justify-content: center;
    z-index: 1;
    width: 100%;
    align-items: center;
    -webkit-text-stroke: #fff 0.5px;
    text-shadow: 0px 4px 4px rgba(255, 255, 255, 0.747);
    }

    .judul-web2 {
    margin-top: 280px;
    margin-bottom: 40px;
    color: #fff;
    font-family: fantasy;
    display: flex;
    font-size: 40px;
    text-align: center;
    flex-direction: column;
    position: absolute;
    justify-content: center;
    z-index: 1;
    width: 100%;
    align-items: center;
    -webkit-text-stroke: #179911 0.1px;
    text-shadow: 0px 4px 4px rgba(255, 255, 255, 0.747);
    }

    .judul-pegawai {
    margin-top: 150px;
    margin-bottom: 40px;
    color: #179911;
    font-family: fantasy;
    display: flex;
    font-size: 50px;
    text-align: center;
    flex-direction: column;
    position: absolute;
    justify-content: center;
    z-index: 1;
    width: 100%;
    align-items: center;
    -webkit-text-stroke: #fff 0.5px;
    text-shadow: 0px 4px 4px rgba(255, 255, 255, 0.747);
    }

    .title-content::before{
    width: 100%;
    height: 60%;
    content: " ";
    background-image: linear-gradient(to top, black, rgba(0, 0, 0, 0.295), transparent);
    position: absolute;
    }

    .judul-img {
    width: 100%;
    height: 60%;
    }

    .box {
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    justify-content: center;
    display: flex;
    }

    .box img {
    border-radius: 100px;
    height: 100px;
    }

    .box .h3 {
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    }

    .box button {
    padding: 10px;
    width: 150px;
    border-radius: 100px;
    background-color: #333;
    color: white;
    }

    .box button:hover {
    background-color: white;
    color: #333;
    padding: 10px;
    width: 150px;
    border-radius: 100px;
    border: 2px solid #333;
    transition: .1s ease-in-out;
    }

    .box-kiri, .box-kanan, .box-tengah {
    width: 400px;
    height: 220px;
    background-color: #f0f0f0;
    text-align: center;
    margin: 0 20px 20px 30px;
    border-radius: 10px;
    float: left;
    padding: 20px 10px;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 4px #333;
    }

    .box-kiri:hover, .box-kanan:hover, .box-tengah:hover {
    background-color: #378d33;
    border-radius: 10px;
    color: white;
    }

    .footer p{
    font-family: calibri;
    }
    
    .footer p:nth-child(1){
        font-size: 30px;
        font-weight:bold;
        color:#FFFFFF;
        line-height:10px;
    }
    
    .footer p:nth-child(2){
        font-size: 16px;
        color:#ffffff;
        width:600px;
        text-align: center;
    }
    
    .footer{
        height: 100px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        display: flex;
        background-color: #378d33;
        margin-top: 500px;
        margin-bottom: 0;
    }
    
    .social-icons a{
        width:25px;
        height:25px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color:#e6e3e3;
        margin:20px 10px;
        border-radius:50%;
    }
    
    .social-icons{
        display: flex;
        position: relative; 
    }
    
    .social-icons i,.social i{
        color:#000000;
    }
    
    .social-icons a:hover{
        background-color:#000000;
        box-shadow:2px 2px 12px rgba(0,0,0,0.2);
        transition:all ease 0.5s;
    }
    
    .social-icons a:hover i,
    .social a:hover i{
        color:#fff;
        transition:all ease 0.5s;
    }
    
    .copyright{
        color:rgb(214, 213, 213);
        font-size: 8px;
        position: absolute;
        left:50%;
        bottom:10px;
        transform: translateX(-50%);
    }
    .social{
        position: fixed;
        top:60%;
        right:0px;
        transform:translateY(-50%);
        display: none;
    }

    .sidebar {
        position: absolute;
        margin-top: 0;
        margin-bottom: 500px;
        width: 180px;
        left: -180px;
        height: 60vh;
        overflow-y: auto;
    }

    .sidebar .text {
        color: white;
        font-size: 15px;
        font-weight: 600;
        line-height: 30px;
        text-align: center;
        background-color: #378d33;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        align-items: center;
        border-bottom: 1px solid black;
    }

    .sidebar ul {
        background-color: rgb(228, 227, 227);
        list-style: none;
    }

    .sidebar ul li {
        line-height: 40px;
        border-bottom: 1px solid black;
        display: block;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        align-items: center;
    }

    .sidebar ul:last-child {
        border-bottom: 1px solid transparent;
    }

    .sidebar ul li a {
        color: black;
        position: relative;
        text-decoration: none;
        font-size: 13px;
        padding-left: 10px;
        font-weight: 500;
        display: block;
        width: 100%;
        border-left: 10px solid transparent;
    }

    .sidebar ul li a:hover {
        color: #378d33;
        background-color: white;
        border-left-color: #378d33;
    }

    .sidebar ul li.active a {
        color: black;
        background-color: white;
    }

    .sidebar ul ul {
        position: static;
        display: none;
    }

    .sidebar ul .eko-show.show{
        display: block;
    }

    .sidebar ul .infra-show.show1{
        display: block;
    }

    .sidebar ul .SDA-show.show2{
        display: block;
    }

    .sidebar ul ul li {
        line-height: 40px;
        border-bottom: none;
    }

    .sidebar ul ul li a {
        font-size: 12px;
        color: #1e1e1e;
        padding-left: 20px;
        line-height: 20px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .sidebar ul li.active ul li a {
        color: #1e1e1e;
        background-color:  rgb(228, 227, 227);
    }

    .sidebar ul ul li a:hover {
        color: #378d33!important;
        background-color: white!important;
    }

    .sidebar ul li a i {
        color: black;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        font-size: 15px;
        transition: transform 0.4s;
    }

    .sidebar ul li a i.rotate {
        transform: translateY(-50%) rotate(-180deg);
    }

    .maps-footer {
        margin-left: 100%;
        margin-top: 0;
        position: absolute;
    }

    .maps-footer iframe {
        height: 130px;
        width: 200px;
        justify-content: center;
        align-items: center;
        position: static;
        display: none;
        box-shadow: 0px 4px 4px #333;
        text-align: center;
        border-radius: 20px;
        align-items: center;
    }

    .maps-footer h3 {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        text-wrap: initial;
        font-size: 8px;
        width: 100px;
    }

    .maps-footer p {
        font-size: 6px;
        color: white;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        margin-top: 5px;
        text-align: center;
    }


    canvas {
        justify-content: center;
        align-items: center;
        display: flex;
        width: 700px;
        height: 700px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        padding: 10px;
        overflow-x: auto;
        overflow-y: auto;
    }

    script .canvas-data {
        width: 300px;
        height: 300px;
        margin-left: 50px;
    }

    .table-data {
        display: block;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        font-size: smaller;
        margin-bottom: 50px;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .table-content {
        width: 70%;
        height: auto;
        overflow-x: auto;
        overflow-y: auto;
        margin-left: 150px;
        margin-right: 20px;
    }

    .th-nodata {
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px;
        width: 10px;
        border: 1px solid black;
        background-color: #179911;
    }

    .th-uraiandata {
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px;
        width: 300px;
        border: 1px solid black;
        background-color: #179911;
    }

    .th-uraiandata2 {
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px;
        width: 200px;
        border: 1px solid black;
        background-color: #179911;
    }

    .th-data {
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px;
        width: 100px;
        border: 1px solid black;
        background-color: #179911;
    }

    .th-data2 {
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px;
        width: 400px;
        border: 1px solid black;
        background-color: #179911;
    }

    .td-data {
        padding: 10px;
        text-wrap: 10px;
        border: 1px solid black;
    }

    .td-datalast {
        padding: 10px;
        text-wrap: 10px;
        border: 1px solid black;
        font-weight: bold;
    }

    .td-data2 {
        padding: 10px;
        text-wrap: 10px;
        border: 1px solid black;
        text-align: left;
    }

    .td-data3 {
        padding: 10px;
        text-wrap: 10px;
        border: 1px solid black;
        text-align: right;
    }

    .tr-data:hover {
        padding: 10px;
        text-wrap: 10px;
        border: 1px solid black;
        background-color: #c7c7c7;
    }

    .tr-data:nth-child(even) {
        background-color: rgb(187, 233, 165);
    }
    .tr-data:nth-child(even):hover {
        background-color: #c7c7c7;
    }

    table .caption {
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        font-weight: bold;
        text-align: center;
        width: 100%;
    }

    table .caption2 {
        width: 100%;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        font-weight: bold;
        text-align: center;
    }

    table .caption3 {
        width: 100%;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        font-weight: bold;
        text-align: center;
    }

    .judul-subjudul {
        margin-top: 80px;
        color: #179911;
        font-family: fantasy;
        display: flex;
        font-size: 25px;
        text-align: center;
        flex-direction: column;
        position: absolute;
        justify-content: center;
        z-index: 1;
        width: 100%;
        align-items: center;
        -webkit-text-stroke: #fff 0.5px;
        text-shadow: 0px 4px 4px rgba(255, 255, 255, 0.747);
    }

    #check {
        display: none;
    }

    label #btn,label #cancel {
        position: relative;
        cursor: pointer;
        background: #378d33;
        border-radius: 2px;
    }

    label #btn {
        left: 10px;
        top: 25px;
        font-size: 20px;
        color: white;
        padding: 6px 6px;
        transition: all 0.5s ;
        width: 60px;
        box-shadow: 0px 4px 4px #333;
    }

    label #cancel {
        z-index: 1111;
        left: -130px;
        top: 6px;
        font-size: 12px;
        color: #000000;
        padding: 4px 4px;
        transition: all 0.5s ease;
    }

    #check:checked ~ .sidebar{
        left: 0;
    }

    #check:checked ~ label #btn{
        left: 150px;
        opacity: 0;
        pointer-events: none;
    }

    #check:checked ~ label #cancel{
        left: 20px;
    }

    label i a {
        margin-left: 5px;
        font-size: 15px;
        justify-content: center;
        align-items: center;
        display: none;
    }

    .elementor-1764 .elementor-element.elementor-element-a028b32.e-con {
        --flex-grow: 0;
        --flex-shrink: 0;
    }

    .elementor-1764 .elementor-element.elementor-element-a028b32:not(.elementor-motion-effects-element-type-background), .elementor-1764 .elementor-element.elementor-element-a028b32 > .elementor-motion-effects-container > .elementor-motion-effects-layer {
        background-color: #CDDBD7;
    }

    .elementor-1764 .elementor-element.elementor-element-a028b32 {
        --display: flex;
        --flex-direction: row-reverse;
        --container-widget-width: calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );
        --container-widget-height: 40%;
        --container-widget-flex-grow: 1;
        --container-widget-align-self: stretch;
        --flex-wrap-mobile: wrap-reverse;
        --align-items: stretch;
        border-style: none;
        --border-style: none;
    }
}

@media screen and (max-width: 576px) {
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    html {
        margin: 0;
        padding: 0;
    }

    html, body {
        overflow-x: hidden;
        overflow-y: auto;
        min-height: 100vh;
    }

    .container-navbar {
        background-color: #333;
        width: 100%;
        height: 10vh;
        gap: 0;
        position: fixed;
        z-index: 2;
        justify-content: center;
        margin-left: auto;
        margin-bottom: 5px;
        bottom: 0;
        top: 0;
    }
    
    .img-navbar {
        width: 7rem;
        height: 3rem;
        display: flex;
        align-items: center;
    }

    .ul-navbar {
        flex-wrap: wrap;
        display: none;
    }

    .datastatistik {
        display: none;
    }

    .list2 {
        flex-wrap: wrap;
        display: none;
    }

    ul .li-navbar {
        flex-direction: column;
        justify-content: center;
        background-color: #333;
        align-items: center;
        text-align: left;
        justify-content: center;
        margin: 0;
        border-bottom: solid 1px white;
    }


    .a-navbar {
        justify-content: center;
        align-items: center;
    }

    .navbar-part {
        justify-content: center;
        align-items: center;
    }

    .navbar-down {
        z-index: 3;
        align-items: center;
        position: relative;
        margin: 1px;
        padding: 0;
    }

    .icon {
        display: flex;
        align-items: center;
        margin-bottom: 8px;
    }

    .title-container {
        font-family: fantasy;
        background-color: #378d33;
        color: #ffffff;
        font-size: 20px;
        text-align: center;
        margin-top: 10px;
        padding-top: 50px;
    }

    .title-container2 {
        font-family: fantasy;
        color: #333;
        font-size: 30px;
        text-align: center;
    }

    .tdr-table {
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        border-bottom: 1px solid #333;
        text-align: left;
        font-size: 12px;
    }

    .tr-table {
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        background-color: #378d33;
        color: white;
        font-size: 12px;
    }

    .berita-img {
        border-radius: 5px;
        height: 15%;
        width: 15%;
        margin-left: 10px;
        object-fit: cover;
    }

    .judul-berita {
        font-size: 15px;
        text-align: left;
        margin-left: 10px;
    }

    .struktur {
        position: relative;
        overflow-x: scroll;
        overflow-y: scroll;
        width: 100%;
        height: 100%;
        cursor: zoom-in;
    }

    .struktur img {
        width: 690px;
        height: 390px;
        justify-content: center;
        align-items: center;
        margin-top: 100px;
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 100px;
        display: flex;
    }

    marquee {
        width: 90%;
    }

    .slider-item .slider-content {
    position: absolute;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-wrap: 2px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    .slider-container {
    background-color: #333;
    width: 90%;
    height: 30%;
    isolation: isolate;
    margin-left: auto;
    margin-right: auto;
    display: flex; 
    margin-bottom: 10px;
    }

    .slider-container .slider-item {
    width: 90%;
    height: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    transition: opacity 3s;
    margin-bottom: 2px;
    }

    .slider-content .slider-title {
    font-size: 1rem;
    line-height: 20px;
    }

    .deskripsi{
    margin-top: 0;
    margin-left: 10px;
    }

    .sejarah {
    padding: 2rem;
    position: relative;
    margin-top: 4rem;
    align-items: center;
    height: 90%;
    overflow: auto;
    }

    .sejarah-deskripsi {
    text-align: justify;
    line-height: 1.2rem;
    margin-bottom: 10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 12px;
    }

    .list-deskripsi {
    text-align: justify;
    line-height: 1.2rem;
    margin-bottom: 10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 12px;
    }

    .sejarah-title {
    text-align: center;
    margin-bottom: 20px;
    background-color: #378d33;
    color: white;
    border: 1px solid #333;
    border-radius: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    }

    title {
    width: 50%;
    height: 100%;
    }   


    .judul-web {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #179911;
    font-family: fantasy;
    display: flex;
    font-size: 30px;
    text-align: center;
    flex-direction: column;
    position: absolute;
    justify-content: center;
    z-index: 1;
    width: 100%;
    align-items: center;
    -webkit-text-stroke: #fff 0.5px;
    text-shadow: 0px 4px 4px rgba(255, 255, 255, 0.747);
    }

    .judul-web2 {
    margin-top: 230px;
    margin-bottom: 10px;
    color: #fff;
    font-family: fantasy;
    display: flex;
    font-size: 30px;
    text-align: center;
    flex-direction: column;
    position: absolute;
    justify-content: center;
    z-index: 1;
    width: 100%;
    align-items: center;
    -webkit-text-stroke: #179911 0.1px;
    text-shadow: 0px 4px 4px rgba(255, 255, 255, 0.747);
    }

    .judul-pegawai {
    margin-top: 150px;
    margin-bottom: 40px;
    color: #179911;
    font-family: fantasy;
    display: flex;
    font-size: 50px;
    text-align: center;
    flex-direction: column;
    position: absolute;
    justify-content: center;
    z-index: 1;
    width: 100%;
    align-items: center;
    -webkit-text-stroke: #fff 0.5px;
    text-shadow: 0px 4px 4px rgba(255, 255, 255, 0.747);
    }

    .title-content::before{
    width: 100%;
    height: 60%;
    content: " ";
    background-image: linear-gradient(to top, black, rgba(0, 0, 0, 0.295), transparent);
    position: absolute;
    }

    .judul-img {
    width: 100%;
    height: 60%;
    }

    .box {
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    justify-content: center;
    display: flex;
    }

    .box img {
    border-radius: 100px;
    height: 100px;
    }

    .box .h3 {
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    }

    .box button {
    padding: 10px;
    width: 150px;
    border-radius: 100px;
    background-color: #333;
    color: white;
    }

    .box button:hover {
    background-color: white;
    color: #333;
    padding: 10px;
    width: 150px;
    border-radius: 100px;
    border: 2px solid #333;
    transition: .1s ease-in-out;
    }

    .box-kiri, .box-kanan, .box-tengah {
    width: 400px;
    height: 220px;
    background-color: #f0f0f0;
    text-align: center;
    margin: 0 20px 20px 30px;
    border-radius: 10px;
    float: left;
    padding: 20px 10px;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 4px #333;
    }

    .box-kiri:hover, .box-kanan:hover, .box-tengah:hover {
    background-color: #378d33;
    border-radius: 10px;
    color: white;
    }

    .footer p{
    font-family: calibri;
    }
    
    .footer p:nth-child(1){
        font-size: 30px;
        font-weight:bold;
        color:#FFFFFF;
        line-height:10px;
    }
    
    .footer p:nth-child(2){
        font-size: 16px;
        color:#ffffff;
        width:600px;
        text-align: center;
    }
    
    .footer{
        height: 100px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        display: flex;
        background-color: #378d33;
        margin-top: 500px;
        margin-bottom: 0;
    }
    
    .social-icons a{
        width:25px;
        height:25px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color:#e6e3e3;
        margin:20px 10px;
        border-radius:50%;
    }
    
    .social-icons{
        display: flex;
        position: relative; 
    }
    
    .social-icons i,.social i{
        color:#000000;
    }
    
    .social-icons a:hover{
        background-color:#000000;
        box-shadow:2px 2px 12px rgba(0,0,0,0.2);
        transition:all ease 0.5s;
    }
    
    .social-icons a:hover i,
    .social a:hover i{
        color:#fff;
        transition:all ease 0.5s;
    }
    
    .copyright{
        color:rgb(214, 213, 213);
        font-size: 8px;
        position: absolute;
        left:50%;
        bottom:10px;
        transform: translateX(-50%);
    }
    .social{
        position: fixed;
        top:60%;
        right:0px;
        transform:translateY(-50%);
        display: none;
    }

    .sidebar {
        position: absolute;
        margin-top: 0;
        margin-bottom: 500px;
        width: 180px;
        left: -180px;
        height: 60vh;
        overflow-y: auto;
    }

    .sidebar .text {
        color: white;
        font-size: 15px;
        font-weight: 500;
        line-height: 30px;
        text-align: center;
        background-color: #378d33;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        align-items: center;
        border-bottom: 1px solid black;
    }

    .sidebar ul {
        background-color: rgb(228, 227, 227);
        list-style: none;
    }

    .sidebar ul li {
        line-height: 40px;
        border-bottom: 1px solid black;
        display: block;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        align-items: center;
    }

    .sidebar ul:last-child {
        border-bottom: 1px solid transparent;
    }

    .sidebar ul li a {
        color: black;
        position: relative;
        text-decoration: none;
        font-size: 13px;
        padding-left: 10px;
        font-weight: 500;
        display: block;
        width: 100%;
        border-left: 10px solid transparent;
    }

    .sidebar ul li a:hover {
        color: #378d33;
        background-color: white;
        border-left-color: #378d33;
    }

    .sidebar ul li.active a {
        color: black;
        background-color: white;
    }

    .sidebar ul ul {
        position: static;
        display: none;
    }

    .sidebar ul .eko-show.show{
        display: block;
    }

    .sidebar ul .infra-show.show1{
        display: block;
    }

    .sidebar ul .SDA-show.show2{
        display: block;
    }

    .sidebar ul ul li {
        line-height: 40px;
        border-bottom: none;
    }

    .sidebar ul ul li a {
        font-size: 12px;
        color: #1e1e1e;
        padding-left: 20px;
        line-height: 20px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .sidebar ul li.active ul li a {
        color: #1e1e1e;
        background-color:  rgb(228, 227, 227);
    }

    .sidebar ul ul li a:hover {
        color: #378d33!important;
        background-color: white!important;
    }

    .sidebar ul li a i {
        color: black;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        font-size: 15px;
        transition: transform 0.4s;
    }

    .sidebar ul li a i.rotate {
        transform: translateY(-50%) rotate(-180deg);
    }

    .maps-footer {
        margin-left: 100%;
        margin-top: 0;
        position: absolute;
    }

    .maps-footer iframe {
        height: 130px;
        width: 200px;
        justify-content: center;
        align-items: center;
        position: static;
        display: none;
        box-shadow: 0px 4px 4px #333;
        text-align: center;
        border-radius: 20px;
        align-items: center;
    }

    .maps-footer h3 {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        text-wrap: initial;
        font-size: 8px;
        width: 100px;
    }

    .maps-footer p {
        font-size: 6px;
        color: white;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        margin-top: 5px;
        text-align: center;
    }


    canvas {
        justify-content: center;
        align-items: center;
        display: flex;
        width: 400px;
        height: 400px;
        position: relative;
        padding: 10px;
        overflow-x: auto;
        overflow-y: auto;
        font-size: 10px;
        margin-left: auto;
        margin-right: auto;
    }

    script .canvas-data {
        width: 200px;
        height: 200px;
        margin-left: 50px;
    }

    .table-data {
        display: block;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        font-size: smaller;
        margin-bottom: 50px;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .table-content {
        width: 70%;
        height: auto;
        overflow-x: auto;
        overflow-y: auto;
        margin-left: 150px;
        margin-right: 20px;
    }

    .th-nodata {
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px;
        width: 10px;
        border: 1px solid black;
        background-color: #179911;
    }

    .th-uraiandata {
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px;
        width: 300px;
        border: 1px solid black;
        background-color: #179911;
    }

    .th-uraiandata2 {
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px;
        width: 200px;
        border: 1px solid black;
        background-color: #179911;
    }

    .th-data {
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px;
        width: 100px;
        border: 1px solid black;
        background-color: #179911;
    }

    .th-data2 {
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px;
        width: 400px;
        border: 1px solid black;
        background-color: #179911;
    }

    .td-data {
        padding: 10px;
        text-wrap: 10px;
        border: 1px solid black;
    }

    .td-datalast {
        padding: 10px;
        text-wrap: 10px;
        border: 1px solid black;
        font-weight: bold;
    }

    .td-data2 {
        padding: 10px;
        text-wrap: 10px;
        border: 1px solid black;
        text-align: left;
    }

    .td-data3 {
        padding: 10px;
        text-wrap: 10px;
        border: 1px solid black;
        text-align: right;
    }

    .tr-data:hover {
        padding: 10px;
        text-wrap: 10px;
        border: 1px solid black;
        background-color: #c7c7c7;
    }

    .tr-data:nth-child(even) {
        background-color: rgb(187, 233, 165);
    }
    .tr-data:nth-child(even):hover {
        background-color: #c7c7c7;
    }

    table .caption {
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        font-weight: bold;
        text-align: center;
        width: 100%;
    }

    table .caption2 {
        width: 100%;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        font-weight: bold;
        text-align: center;
    }

    table .caption3 {
        width: 100%;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        font-weight: bold;
        text-align: center;
    }

    .judul-subjudul {
        margin-top: 80px;
        color: #179911;
        font-family: fantasy;
        display: flex;
        font-size: 25px;
        text-align: center;
        flex-direction: column;
        position: absolute;
        justify-content: center;
        z-index: 1;
        width: 100%;
        align-items: center;
        -webkit-text-stroke: #fff 0.5px;
        text-shadow: 0px 4px 4px rgba(255, 255, 255, 0.747);
    }

    #check {
        display: none;
    }

    label #btn,label #cancel {
        position: relative;
        cursor: pointer;
        background: #378d33;
        border-radius: 2px;
    }

    label #btn {
        left: 10px;
        top: 25px;
        font-size: 20px;
        color: white;
        padding: 6px 6px;
        transition: all 0.5s ;
        width: 60px;
        box-shadow: 0px 4px 4px #333;
    }

    label #cancel {
        z-index: 1111;
        left: -130px;
        top: 6px;
        font-size: 12px;
        color: #000000;
        padding: 4px 4px;
        transition: all 0.5s ease;
    }

    #check:checked ~ .sidebar{
        left: 0;
    }

    #check:checked ~ label #btn{
        left: 150px;
        opacity: 0;
        pointer-events: none;
    }

    #check:checked ~ label #cancel{
        left: 20px;
    }

    label i a {
        margin-left: 5px;
        font-size: 15px;
        justify-content: center;
        align-items: center;
        display: none;
    }

    .elementor-1764 .elementor-element.elementor-element-a028b32.e-con {
        --flex-grow: 0;
        --flex-shrink: 0;
    }

    .elementor-1764 .elementor-element.elementor-element-a028b32:not(.elementor-motion-effects-element-type-background), .elementor-1764 .elementor-element.elementor-element-a028b32 > .elementor-motion-effects-container > .elementor-motion-effects-layer {
        background-color: #CDDBD7;
    }

    .elementor-1764 .elementor-element.elementor-element-a028b32 {
        --display: flex;
        --flex-direction: row-reverse;
        --container-widget-width: calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );
        --container-widget-height: 40%;
        --container-widget-flex-grow: 1;
        --container-widget-align-self: stretch;
        --flex-wrap-mobile: wrap-reverse;
        --align-items: stretch;
        border-style: none;
        --border-style: none;
    }

    .table-daftar {
    width: 100%;
    height: 100%;
    margin-left: 50px;
    overflow-x: auto;
    overflow-y: auto;
    justify-content: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    display: block;
    margin-top: 10px;
}

.th-namapegawai {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px;
    width: 150px;
    border: 1px solid black;
    background-color: #179911;
    border-radius: 10px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 12px;
}

.th-pangkat {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px;
    width: 70px;
    border: 1px solid black;
    background-color: #179911;
    border-radius: 10px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 12px;
}

.th-jabatan {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px;
    width: 180px;
    border: 1px solid black;
    background-color: #179911;
    border-radius: 10px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 12px;
}

.td-pegawai {
    padding: 10px;
    text-wrap: 10px;
    border: 1px solid black;
    border-radius: 10px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 10px;
}

.tr-pegawai:hover {
    padding: 10px;
    text-wrap: 10px;
    border: 1px solid black;
    border-radius: 10px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: smaller;
    background-color: #a7f1a3;
}

.box {
    position: relative;
    overflow-x: auto;
    margin-left: 10px;
    margin-right: 10px;
}

.box-kepala {
    width: 200px;
    height: 260px;
    background-color: #378d33;
    text-align: center;
    margin: 0 20px 20px 30px;
    border-radius: 10px;
    float: left;
    padding: 20px 10px;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 4px #333;
}

.box-kepala img {
    border-radius: 10px;
    height: 120px;
    border: 2px solid #378d33;
    background-color: white;
}

.box-kepala .h2 {
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: small;
    color: white;
}

.box-kepala .h3 {
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: white;
    border-top: 2px solid white;
    padding-top: 10px;
    font-size: small
}

.box-Kepala .h4 {
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: smaller;
    color: black;
}

.box-sekretaris {
    width: 360px;
    height: 210px;
    background-color: #f0f0f0;
    text-align: center;
    margin: 10px;
    border-radius: 10px;
    float: left;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 4px #333;
}

.box-sekretaris img {
    border-radius: 100px;
    height: 80px;
    border: 2px solid #378d33;
    background-color: white;
}

.box-sekretaris .h2 {
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 10px;
    color: #378d33;
    padding: 0;
}

.box-sekretaris .h3 {
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 10px;
    border-top: 1px solid black;
    padding: 0;
}

.box-sekretaris .h4 {
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 8px;
    padding: 0;
}

.box-Kasubag {
    width: 200px;
    height: 200px;
    background-color: #f0f0f0;
    text-align: center;
    margin: 10px;
    border-radius: 10px;
    float: left;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 4px #333;
}

.box-Kasubag img {
    border-radius: 100px;
    height: 65px;
    border: 2px solid #378d33;
    background-color: white;
}

.box-Kasubag .h2 {
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 8px;
    color: #378d33;
}

.box-Kasubag .h3 {
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 8px;
    border-top: 1px solid black;
}

.box-Kasubag .h4 {
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 8px;
}

.box-Kabid {
    width: 280px;
    height: 210px;
    background-color: #f0f0f0;
    text-align: center;
    margin: 5px;;
    border-radius: 10px;
    float: left;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 4px #333;
}

.box-Kabid img {
    border-radius: 100px;
    height: 65px;
    border: 2px solid #378d33;
    background-color: white;
}

.box-Kabid .h2 {
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 8px;
    color: #378d33;
    height: 15px;
}

.box-Kabid .h3 {
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 8px;
    border-top: 0.2px solid black;
    height: 15px;
}

.box-Kabid .h4 {
    width: 100%;
    text-align: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 8px;
    height: 15px;
}
}