/******************** NAVBAR ********************/

#navbar {
    width: 100%;
}

#top-nav {
    background-color: #0046be;
    width: 100%;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.block {
    padding: 15px 35px;
}

#menu-button {
    align-items: center;
    color: #fff;
    display: flex;
    font-weight: 500;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

#search {
    width: 40%;
    padding: 12px 10px;
    border-radius: 7px;
    border: none;
    margin-left: 37px;
}

#top-nav-right {
    display: flex;
    margin-left: 28%;
    justify-content: flex-end;
    gap: 20px;
}

#aiea {
    align-items: center;
    color: #fff;
    display: flex;
    font-weight: 500;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    gap: 5px;
    font-weight: 600;
}

#cart {
    align-items: center;
    color: #fff;
    display: flex;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    gap: 5px;
    font-weight: 600;
}

#cart:hover {
    text-decoration: underline;
}

#horizontal-line {
    width: 100%;
    height: 1px;
    margin-top: 77px;
    background: #4976E6;
}

#down-nav {
    background-color: #0046be;
    width: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 12px 0px;
}

#down-nav a {
    text-decoration: none;
    color: #fff;
}

#down-nav-left {
    display: flex;
    text-align: center;
    font-size: 12px;
    font-weight: 300;
    margin-left: 30px;
}

#down-nav-right {
    display: flex;
    text-align: center;
    font-size: 13px;
    font-weight: 300;
    margin-left: 207px;
}

#down-nav-left>a {
    margin-right: 23px;
}

#down-nav-right>a {
    margin-right: 30px;
    font-weight: 500;
}

.dropbtn {
    align-items: center;
    color: #fff;
    display: flex;
    background: none;
    border: none;
    font-size: 13px;
    cursor: pointer;
    gap: 5px;
    font-weight: 600;
    margin-right: 27px;
}

#down-nav-left>a:hover {
    text-decoration: underline;
}


/******************** DROP MENU ********************/

.dropdown {
    position: absolute;
    top: 122px;
    right: 17%;
    width: 330px;
    background-color: #c5cbd5;
    border: 1px solid #c5cbd5;
}

.hide {
    display: none;
}

.sub-menu {
    width: 85%;
    margin: auto;
    text-align: center;
}

.sub-menu a {
    display: block;
    color: #fff;
}

.sub-menu>p {
    font-size: 12px;
}

#sign-in-btn {
    padding: 7px 110px;
    border-radius: 5px;
    border: none;
    background: #0046BE;
    color: white;
    font-weight: 600;
    font-size: 13px;
}

#sign-in-btn:hover {
    background-color: rgb(18, 18, 102);
    cursor: pointer;
}

#sign-up-btn {
    margin-top: 10px;
    padding: 7px 84px;
    border-radius: 5px;
    border: 1px solid #0046BE;
    background: white;
    color: #0046BE;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 20px;
}

#sign-up-btn:hover {
    background-color: rgb(18, 18, 102);
    color: white;
    cursor: pointer;
}