/*@font-face {*/
/*    font-family: 'Acumin Regular';*/
/*    src: url(/font/Acumin-RPro.otf);*/
/*    font-display: swap;*/
/*}*/

/*@font-face {*/
/*    font-family: 'Acumin Bold';*/
/*    src: url(/font/Acumin-BdPro.otf);*/
/*    font-display: swap;*/
/*}*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Acumin Regular';

}

table td, table th {
    padding: 8px;
}

ul {
    list-style: none;
}

i {
    font-size: inherit;
}

a {
    text-decoration: none;
    color: black;
}

.hide, 
.bx.hide {
    display: none;
}

.flex-row {
    display: flex;
    align-items: center;
    column-gap: 16px;
}

.flex-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 16px;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.links ul {
    column-gap: 8px;
}

.container {
    row-gap: 0;
    width: 100%;
    min-height: 100vh;
}

.header {
    width: 100%;
    background-color: #084476; /* #084476; */
    padding: 8px 0;
    border: solid 1px #084476; /* #e5e7eb; */
    box-shadow:  0px 0px 10px 5px rgba(0,0,0,0.1);
}

.container .header .cont {
    max-width: 1200px;
    padding: 0 34px;
    width: 100%;
}

.menu {
    justify-content: space-between;
    padding-top: 8px;
}

.submenu ul li {
    padding: 0 16px 0 0;
}

.bottom-menu ul li {
    position: relative;
}

.bottom-menu .submenu ul li a,
.bottom-menu .submenu a {
    color: black;
}

.menu ul li {
    /*color: black;*/
    color: white;
}

.bottom-menu ul li a {
    padding: 0 16px;
}

.menu ul li a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #df0824;
}

.bottom-menu .submenu ul li a:hover,
.bottom-menu .submenu .detail-submenu a:hover,
.bottom-menu .submenu .close-menu a:hover {
    color: #df0824;
}

.bottom-menu ul li a:hover::after {
    background: #df0824;
}

.menu ul li .menu-link.aktif,
.mini-sub ul li .menu-link.aktif,
.mini-header ul li .menu-link.aktif {
    /*color: #f72a45;*/
    /*font-weight: bold;*/
}

.menu ul li a:hover {
    /* color: #f72a45; */
    font-weight: bold;
}
/* 
.bottom-menu ul li .menu-link.aktif::after {
    display: block;
    height: 3px;
    background: #df0824;
    width: 25px;
    position: relative;
    bottom: -2px;
    content: "";
}

.bottom-menu ul li .menu-link::after {
    display: block;
    height: 3px;
    background: #fff;
    width: 25px;
    position: relative;
    bottom: -2px;
    content: "";
} */

.bottom-menu .submenu {
    min-width: 600px;
    height: 98px;
    position: absolute;
    left: -70px;
    top: 38px;
    z-index: 10;
    width: 100%;
    grid-template-columns: 1fr 10fr 1fr;
    align-items: center;
    gap: 0;
    border: solid 1px gray;
    background-color: white;
    display: none;
}
.bottom-menu .submenu.aktif {
    display: grid;
}

.bottom-menu .submenu .marker {
    width: 100%;
    height: 45px;
    background-color: #0d9e3a;
}

.bottom-menu .submenu .close-menu {
    text-align: center;
    color: black;
    font-size: 24px;
}

.bottom-menu .submenu .detail-submenu {
    padding: 0 20px;
}

.bottom-menu .detail-submenu .title {
    height: 40px;
    display: flex;
    align-items: center;
}

.bottom-menu .detail-submenu .konten {
    font-size: 14px;
    width: 100%;
    display: grid;
}

.bottom-menu .lay-1 {
    grid-template-columns: 1fr 1.4fr 1fr;
}

.bottom-menu .lay-2 {
    grid-template-columns: 1.5fr 1.5fr 1fr;
}

.bottom-menu .detail-submenu .konten .konten-center {
    border-left: solid 1px white;
    border-right: solid 1px white;
    padding: 0 24px;
}

.bottom-menu .detail-submenu .konten .konten-right {
    padding-left: 24px;
}

.bottom-menu .detail-submenu .konten ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 16px;
}

.bottom-menu .detail-submenu .konten ul li a::after {
    height: 0px;
}

.footer {
    width: 100%;
}

.footer .cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 40px 0 16px;
    background-color: #084476;
}

.footer .cont .links {
    max-width: 1200px;
    padding: 0 34px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
}

.footer .cont .links a {
    font-size: 14px;
    color: white;
}

.footer .cont .links h3 {
    font-size: 16px;
    color: white;
}

.footer .cont .copy {
    padding: 0 34px;
    max-width: 1200px;
    width: 100%;
    text-align: right;
    margin: 24px 0 0;
    color: white;
}

.footer .privacy {
    background: #212121;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer .privacy ul {
    display: flex;
    column-gap: 16px;
    padding: 16px 0;
}

.footer .privacy ul li,
.footer .privacy ul li a {
    color: white;
    font-size: 14px;
}

.footer ul {
    align-items: flex-start;
    row-gap: 8px;
}

.footer ul li a {
    display: flex;
    align-items: center;
    line-height: 25px;
    column-gap: 8px;
}

.footer ul li a i {
    font-size: 24px;
}

.mini-header {
    display: none;
    justify-content: space-between;
    padding: 8px 34px;
    width: 100%;
    font-size: 24px;
    border: solid 1px #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background: white;
}

.mini-sub {
    width: 360px;
    padding: 8px 16px;
    border: solid 1px #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    overflow-x: hidden;
    position: fixed;
    z-index: 1000;
    top: 60px;
    left: -400px;
    background: white;
    transition: all 0.2s ease;
    font-size: 15px;
}

.mini-sub.on {
    left: 0;
}
.mini-sub ul li a {
    color: #084476;
}
.mini-sub ul li p {
    font-size: 14px;
    color: #084476;
}

.mini-sub ul li i {
    color: #084476;
}

#mini2 ul li i {
    transform: rotate(270deg);
}

.mini-sub ul li {
    padding: 16px 0;
    border-bottom: solid 1px gray;
}

.mini-sub ul li {
    transition: all 0.2s ease;
}
    
.down {
    transform: rotate(180deg);
}

.spd {
    margin-left: 20px; height: 0; overflow-y: hidden;
    transition: all 0.2s ease;
}

.spd.down-ul {
    height: 54px;
}

.mini-header .menu-link{
    font-size: 14px;
    line-height: 17px;
}

.mini-header .menu-link.aktif,
.header .menu .right-menu .menu-link.aktif {
    /*font-weight: bold;*/
    font-size: 14px;
    color: #FFD700;
}
.header .menu .right-menu .menu-link:hover {
    color: #FFD700;
}
@media only screen and (max-width: 1199px) {
    .header {
        display: none;
    }
    .mini-header {
        display: flex;
    }
}
@media only screen and (orientation: portrait) {
        
    .mini-header .menu-link.aktif,
    .header .menu .right-menu .menu-link.aktif {
        color: #E00029;
    }
}
