:root {
    --body-font: 'Kumbh Sans', sans-serif;
    --thm-color1: #03155b;
    --thm-color2: #FFA500;
    --thm-secondary: #F3F3F3;
    --txt-white: #ffffff;
    --txt-color1: #03155b;
    --txt-color2: #FFA500;
}
body {
    font-family: var(--body-font);
    font-weight: 400;
}
a {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    color: var(--thm-black);
    font-weight: 700;
    margin: 0;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--thm-color1);
    margin: 0;
    font: inherit;
    width: 25px;
    height: 25px;
    border-radius: 0.15em;
    /*border-radius: 50%;*/
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}
input[type="radio"]::before {
    /*content: '';
    width: 15px;
    height: 15px;
    border-radius: 50%;*/
    content: '\2714';
    width: 10px;
    height: 21px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    color: white;
    /*background-color: white;*/
}
input[type="radio"]:checked::before {
    transform: scale(1);
}
input[type="radio"]:focus {
    outline: max(2px, 0.15em) solid var(--thm-color1);
    outline-offset: max(2px, 4px);
}
input[type="radio"]:hover {
    outline: max(2px, 0.15em) solid var(--thm-color1);
    outline-offset: max(2px, 4px);
}
.wrap-radio {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-self: center;
    height: max-content;
    justify-content: center;
    margin-bottom: 1rem;
}
.input-radio {
    display: flex;
    flex-direction: column;
    align-self: center;
}
.label-radio {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
    padding-left: 10px;
    align-items: flex-start;
    margin-bottom: 0;
}
input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--thm-color1);
    margin: 0;
    font: inherit;
    width: 25px;
    height: 25px;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}
input[type="checkbox"]::before {
    content: '\2714';
    width: 10px;
    height: 21px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    color: white;
}
input[type="checkbox"]:checked::before {
    transform: scale(1);
}
input[type="checkbox"]:focus {
    outline: max(2px, 0.15em) solid var(--thm-color1);
    outline-offset: max(2px, 4px);
}
input[type="checkbox"]:hover {
    outline: max(2px, 0.15em) solid var(--thm-color1);
    outline-offset: max(2px, 4px);
}
.wrap-checkbox {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-self: center;
    height: max-content;
    justify-content: center;
    margin-bottom: 1rem;
}
.input-checkbox {
    display: flex;
    flex-direction: column;
    align-self: center;
}
.label-checkbox {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
    padding-left: 10px;
    align-items: flex-start;
    margin-bottom: 0;
}
.widget {
    position: relative;
    margin-bottom: 30px;
    background-color: var(--thm-secondary);
    padding: 40px;
    border-radius: 20px;
}
.widget ul {
    list-style: none;
}
.list-group-cust {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
}
.list-group-item-cust a {
    position: relative;
    display: block;
    padding: 25px 35px;
    background-color: #fff;
    border-radius: 20px;
    text-decoration:none;
    color: #000;
    font-weight: 700;
}
.list-group-item-cust a:hover {
    background-color: var(--thm-color1);
    color: var(--txt-color2);
}
.btn-blue {
    color: #fff;
    background-color: var(--thm-color1);
    border-color: var(--thm-color1);
}
.btn-orange {
    color: #fff;
    background-color: var(--thm-color2);
    border-color: var(--thm-color2);
}
.btn-blue:hover {
    color: var(--txt-color1);
    background-color: var(--thm-color2);
    border-color: var(--thm-color2);
}
.btn-orange:hover {
    color: var(--txt-color1);
}
.bg-thm1{
    background-color: var(--thm-color1);
}
.bg-thm2{
    background-color: var(--thm-color2);
}
.bg-bb {
    background-color: #101633;
}
.txt-color1
{
    color: var(--txt-color1) !important;
}
.txt-color2
{
    color: var(--txt-color2) !important;
}
.text-sm {
    font-size: 0.9rem;
    line-height: 1.25rem;
}
.text-xs {
    font-size: 0.8rem;
    line-height: 1.25rem;
}
.text-muted {
    color: #6c757d !important;
}
.uppercase {
    text-transform: uppercase !important;
}
.top-80{
  top: 80px;
}
.gap-2 {
    gap: 0.50rem;
}
.gap-4 {
    gap: 1rem;
}
.gap-6 {
    gap: 1.5rem;
}
.img-hover-zoom {
  overflow: hidden;
}
.img-hover-zoom img {
  transition: transform .5s ease;
}
.img-hover-zoom:hover img {
  transform: scale(1.5);
}
#main-menu {
    background-color: var(--thm-color1);
    padding-bottom: 15px;
    padding-top: 15px;
    box-shadow: 0 8px 25px 0 rgba(0, 0, 0, 0.04);
    -moz-box-shadow: 0 8px 25px 0 rgba(0, 0, 0, 0.04);
    -webkit-box-shadow: 0 8px 25px 0 rgba(0, 0, 0, 0.04);
    -o-box-shadow: 0 8px 25px 0 rgba(0, 0, 0, 0.04);
}
/*#main-menu {
    -webkit-transition: padding-top .3s, padding-bottom .3s;
    -moz-transition: padding-top .3s, padding-bottom .3s;
    transition: padding-top .3s, padding-bottom .3s;
}*/
#main-menu .nav-item .nav-link {
    color: var(--txt-white);
    font-size: 16px;
}
#main-menu .nav-item.active a.nav-link {
    /*background-color: var(--thm-color2) !important;*/
    color: var(--txt-color2);
}
#main-menu .navbar-toggler{
    font-size: 15px !important;
    color: var(--txt-white) !important;
    background-color: var(--thm-color2) !important;
    padding: 10px;
}
#main-menu .dropdown-item:focus, .dropdown-item:hover {
    color: var(--txt-white) !important;
    background-color: var(--thm-color1) !important;
}
#main-menu .navbar-nav .nav-item {
    padding-left: 10px;
    padding-right: 10px;
}
.dropdown-toggle::after {
    float: right;
    vertical-align: middle;
}
.nav-sosmed a {
    color: var(--txt-white) !important;
}
.nav-sosmed a:hover {
    color: var(--thm-color2) !important;
}
.dropdown-toggler::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    margin-left: 5px;
    vertical-align: 0;
}
.bg-top {
    background-image: url('../../../assets/frontend/images/bg-top.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 1rem;
    padding-bottom: 2rem;
    display: block;
    position: relative;
}
.bg-top::before {
    content: " ";
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    left: 0;
    position: absolute;
    top: 0;
    z-index: 0;
}
.wrapper-info {
    display: flex;
    flex-direction: row;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 20px; 
}
#panel-info {
    margin-top: -150px;
    z-index: 99;
}
#panel-info .card {
    border-radius: 10px !important;
}
#panel-info .icon-panel-info {
    width: 200px;
    border-radius: 10px;
    background-color: #ffffff;
}
#panel-info .icon-panel-info:hover {
    background-color: var(--thm-color2)
}
#panel-info .icon-panel-info:hover p {
    color: var(--txt-color1);
}
.svg-img {
  transition: filter 0.3s ease;
}
.svg-img:hover {
  filter: hue-rotate(180deg) brightness(1.5); /* Rotasi hue untuk ubah warna, tingkatkan brightness */
}
.berita-kategori:hover {
    background-color: #e6eaf0;
    border-radius: 10px;
}
.berita-kategori:hover span.group-hover {
    color: var(--txt-color2);
    transition: all 0.2s ease-in-out 0s;
}
.nav-breadcrumb .breadcrumb-item a {
    text-decoration: none;
}
.nav-breadcrumb .breadcrumb-item.active a {
    color: var(--txt-white) !important;
}
.breadcrumb-item.active {
    color: var(--txt-white) !important;
}
.breadcrumb-item+.breadcrumb-item::before {
    width: 10px;
    height: 10px;
    margin: 9px;
    color: #fff !important;
    content: "";
    background-image: url('../../../assets/frontend/icons/arrow-right.svg');
    background-repeat: no-repeat;
    display: inline-block;
    background-position: 50%;
}
.sidebar-wrapper {
    height: 38px;
    width: 100%;
}
.border-bottom-wrapper {
    border-bottom: solid 3px var(--txt-color1);
}
.border-bottom-wrapper-gray {
    border-bottom: solid 3px var(--txt-color2);
}
.section-header .section-title {
    font-weight: 700;
    color: #000;
    text-transform: capitalize;
    position: relative;
    margin: 0 0 20px;
}
#scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    cursor: pointer;
    z-index: 1000;
    background-color: var(--txt-color2);
    color: #ffffff;
}
.two-color-border-bottom {
  position: relative;
  display: inline-block;
  padding-bottom: 10px; /* space for the border */
}

.two-color-border-bottom::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px; /* border thickness */
  background: linear-gradient(to right, var(--txt-color1) 50%, var(--txt-color2) 50%); /* red and blue halves */
  border-radius: 2px;
}
.overlay-mata-info {
    position: absolute;
    top: -20px;
    background: #ffffff;
    border-radius: 8px;
    padding: 9px 25px 4px;
    overflow: hidden;
    z-index: 10;
    font-size: 13px;
    font-weight: 400;
    line-height: 23px;
}
.img-wrapper {
    /*height: 350px;*/
    width: 100%;
    position: relative;
    overflow: hidden;
}
.img-wrapper img {
    position: absolute;
    transition: transform .5s ease;
}
.img-wrapper:hover img {
  transform: scale(1.5);
}
.gitem .img-wrapper .title {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;
    z-index: 1;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    opacity: 0;
}
.gitem .img-wrapper:hover .title {
    bottom: 30px;
    opacity: 1;
}
.gitem .img-wrapper .title h4 {
  text-transform: capitalize;
  font-weight: 600;
  margin: 0;
}
.gitem .img-wrapper .title h4 {
  color: #ffffff;
}
.gitem .img-wrapper::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: #000000;
  opacity: 0;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
}
.gitem:hover .img-wrapper::after {
  opacity: 0.5;
}
.object-cover {
    -o-object-fit: cover;
    object-fit: cover;
}
.list-group .list-kategori:hover {
    background-color: var(--thm-color1);
    color: var(--txt-color2) !important;
    font-weight: 500;
}
.list-group .list-kategori.active {
    background-color: var(--thm-color1);
    color: var(--txt-color2) !important;
    font-weight: 500;
}
.box-info h5 {
    font-weight: 600;
}
.box-info .icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.box-info:hover .icon {
    background-color: var(--thm-color1) !important;
    color: var(--txt-color2);
}
section {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}
#berita-ppid h4 {
    color: #ffffff;
}
/*.page-link {
    background-color: var(--thm-color1);
    border: 1px solid var(--thm-color2);
}
*/
.page-link a {
    color: var(--txt-color1);
}
.page-link a:hover {
    text-decoration: none;
}
.page-item.active .page-link {
    background-color: var(--thm-color1);
    border-color: var(--thm-color1);
}
/*.page-item:hover .page-link {
    background-color: var(--thm-color2);
    border-color: var(--thm-color2);
}
.page-item:hover .page-link a {
    color: var(--txt-color1);
}*/
/*@media (min-width: 768px) {
    .img-wrapper {
        height: 350px;
    }
}*/
#info-publik button:focus {
    outline: none;
    border: none;
}
.footer-image-wrapper {
    display: flex !important;
    flex-direction: row;
    gap:10px;
}
hr.newlinefooter {
    display: block;
    height: 1px;
    border: 0;
    border-top: 3px solid #ccc;
}
.owl-ppid .item {
    width: 190px;
    border: 1px solid #ccc;
    border-radius: 20px;
    margin: 10px;
    font-size: 12px;
    padding: 10px;
    color: 
}
.owl-ppid .item img {
    width: auto !important;
    height: 80px;
}
/*Owl Carousel*/
.owl-nav button.owl-prev {
  left: 0;
  opacity: 0;
  color: var(--thm-color2);
}
.owl-nav button.owl-next {
  right: 0;
  opacity: 0;
}
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--thm-color1) !important;
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
  color: var(--thm-color2) !important;
}
.owl-nav button:focus {
  outline: none;
}
.owl-carousel:hover .owl-nav button.owl-prev {opacity: 1 !important;}
.owl-carousel:hover .owl-nav button.owl-next {opacity: 1 !important;}
/*End Owl carousel*/
.loader-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
}
.loader {
    position: absolute;
    width: 250px;
    height: 90px;
    color: #ffffff;
    border-radius: 10px;
    border: 3px solid var(--thm-color1);
    background-color: rgba(3, 21, 91, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
footer .iconlogo {
    height: auto;
    width: 110px;
}
.contact-info {
    position: relative;
    margin: 0 0 7px 0;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 0 0 0 50px;
    max-width: 500px;
}
.contact-info i {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: var(--thm-color1);
    color: var(--txt-white);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    z-index: -1;
    transition: all ease 0.4s;
}
.contact-info:hover i {
    background-color: var(--thm-color2);
    color: var(--txt-color1);
}
@media (max-width: 991px) {
    .dropdown-toggler:before {
        font-family: 'Font Awesome 5 Free';
         font-weight: 600; 
        content: "\f105";
        float: right;
    }
}
@media (min-width: 992px) {
    #main-menu {
        background-color: var(--thm-color1);
        padding-bottom: 0;
        padding-top: 0;
        z-index: 1021 !important;
    }
    #main-menu .navbar-nav .nav-item {
        margin-left: 20px;
        padding-top: 22px;
        padding-bottom: 22px;
        padding-left: 10px;
        padding-right: 10px;
    }
    #main-menu ul.navbar-nav > li.nav-item > a  {
        font-weight: 600;
        font-size: 13px;
        text-transform: uppercase;
    }
    #main-menu ul.navbar-nav > li.nav-item .dropdown-menu a  {
        font-weight: 500;
        font-size: 12px;
        text-transform: uppercase;
    }
    #main-menu .navbar-nav .nav-item:first-child {
        margin-left: 0;
    }
    .navbar-nav > li:last-child > a {
        margin-right: 0;
    }
    .navbar .nav-item .dropdown-menu{ display: none; }
    .navbar .nav-item:hover .dropdown-menu{ display: block; }
    .navbar .nav-item .dropdown-menu{ margin-top:0; }
    .navbar-text::before{
        background: #e7e7e7 none repeat scroll 0 0;
        content: "";
        height: 30px;
        margin-top: -15px;
        position: absolute;
        top: 50%;
        width: 1px;
    }
}