@import url(root.css);

.custom-header{
    width: 95%;
    margin: auto;
}

.customHeader{
    width: 100%;
    left: 0;
    position: fixed;
    z-index: 999;
    padding-top: 40px;
    top: 0;
}

.custom-header-main{
    width: 85%;
    margin: auto;
    background: var(--PrimaryColor);
    border-radius: 50px;
    padding: 10px 20px;
}

.menuItemsWrap{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.menuItems {
    padding: 16px 11px;
    background: var(--WhiteColor);
    border-radius: 25px;
}

.menuItems ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}

.menuItems ul li a {
    margin-bottom: 0;
    color: var(--BlackColor);
    font-size: var(--Font22);
    font-weight: var(--Font500);
    padding: 7px 55px;
    text-decoration: none;
}

.menuItems ul li a.active {
    color: var(--WhiteColor);
    background: var(--PrimaryColor);
    border-radius: 15px;
}
