*{
    box-sizing:border-box;
}

html,body{
    margin:0;
    padding:0;
    width:100%;
    overflow-x:hidden;
    font-family:'Poppins',sans-serif;
}

/* HEADER */
.header-mitra{
    background:#1a1a2f;
    color:white;
    padding:15px 18px;
    display:flex;
    justify-content:space-between;
    align-items:center;

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
}

/* LOGO */
.header-mitra .logo{
    font-size:18px;
    font-weight:600;
    text-transform:capitalize;
}

/* HAMBURGER */
.menu-toggle{
    width:22px;
    height:16px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    cursor:pointer;
}

.menu-toggle span{
    display:block;
    height:2px;
    background:white;
    border-radius:2px;
    transition:0.3s;
}

/* animasi hamburger */
.menu-toggle.active span:nth-child(1){
    transform:rotate(45deg) translate(5px,5px);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:rotate(-45deg) translate(5px,-5px);
}

/* MENU POPUP */
.menu-popup{
    position:fixed;
    top:60px;
    right:15px;

    background:#34495e;
    border-radius:12px;

    width:220px;
    padding:8px 0;

    display:flex;
    flex-direction:column;

    box-shadow:0 8px 24px rgba(0,0,0,0.3);

    opacity:0;
    transform:translateY(-10px);
    pointer-events:none;

    transition:all .25s ease;
}

/* MENU ACTIVE */
.menu-popup.active{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
}

/* MENU LINK */
.menu-popup a{
    padding:11px 16px;
    font-size:15px;
    text-decoration:none;
    color:white;
    display:flex;
    align-items:center;
    gap:10px;
}

.menu-popup a:hover{
    background:rgba(255,255,255,0.1);
}

/* LINE */
.menu-popup hr{
    border:0;
    border-top:1px solid rgba(255,255,255,0.2);
    margin:6px 0;
}

/* OVERLAY */
.overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background:rgba(0,0,0,0.25);

    opacity:0;
    pointer-events:none;

    transition:0.25s;
    z-index:999;
}

.overlay.show{
    opacity:1;
    pointer-events:auto;
}

/* PAGE CONTENT */
.page-content{
    margin-top:65px;
}