/**
 * Navbar Start
 *
 * @format
 */

/* Buat Variabel */

.logo img {
    height: 50px;
    padding-left: 30px;
    float: left;
}

ul {
    list-style: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* height: 5rem; */
    width: 100%;
    /* padding: 0 5%; */
    background-color: var(--primary);
    z-index: 20;
    position: fixed;
    box-shadow: 0px 0px 10px 0px #ffe6a7;
}

.nav-menu {
    display: flex;
}

.nav-menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li #active {
    position: relative;
    margin: 30px 20px;
    color: #ffe6a7;
    /* border-radius: 10px; */
    font-size: 1.2rem;
    font-weight: 400;
    display: inline-block;
}

li #active::after {
    content: "";
    background: #ffe6a7;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    border-radius: 8px;
    transition: width 0.5s;
}

li #active:hover::after {
    width: 100%;
    background-color: #ffe6a7;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px 0;
    transition: all 0.3s ease;
    background-color: #ffe6a7;
    border-radius: 20px;
}

/* Navbar End */
