/* Navbar */
.navbar {
    /* background-color: aqua; */
    max-width: 100%;
    min-width: 100%;
    overflow: hidden;
    display: flex;
    position: fixed;
    flex-direction: row;
    max-height: 11vh;
    z-index: 900;
    min-height: 11vh;
    backdrop-filter: blur(2px);
    background: rgba(0, 0, 0, 0.307);
    color: gainsboro;
    /* backdrop-filter: grayscale(70%); */
}

.navbar-kiri {
    width: 100%;
    display: flex;
    align-items: center;
    list-style: none;
    justify-content: start;
    padding-left: 3px;
    gap: 10px;
    /* background-color: black; */
}

.logo-pt,
.nama-pt {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
}

.logo-pt img {

    width: 70px;
    height: 70px;

}

.navbar-kanan {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 50%;
    /* background: red; */
}

.navbar-kanan-register {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: right;
    width: 60%;
    gap: 10px;

    padding-right: 5px;

}

.li-navbar-kanan a {
    text-decoration: none;
    /* color: rgb(150, 128, 57); */
    color: gainsboro;
    font-size: 16px;
    transition: 0.2s ease-in-out all;
    -webkit-transition: 0.2s ease-in-out all;
    -moz-transition: 0.2s ease-in-out all;
    -ms-transition: 0.2s ease-in-out all;
    -o-transition: 0.2s ease-in-out all;
}

.li-navbar-kanan a:hover {
    color: red;
}


/* Navbar */