/* Nav-Top ------------------ */

.nav-top {
    width: 75%;
    height: 80px;
    margin: auto;
    margin-top: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 1128px) {
    .nav-top {
        width: 90%;
    }
}

.nav-top-right {
    width: fit-content;
    height: auto;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 1128px) {
    .nav-top-right {
        display: none;
    }
}

.image-logo {
    width: 137px;
    height: auto;
}

@media screen and (max-width: 560px) {
    .image-logo {
        width: 110px;
    }
}

.image-logo2 {
    width: 40px;
}

.image-login {
    width: 28px;
    height: 28px;
}

.image-menu {
    width: 25px;
    padding: 4px 0;
    margin-right: 20px;
}

@media screen and (max-width: 1128px) {
    .image-menu {
        margin-right: 0;
    }
}



/* Menu ------------------ */

.menu-list {
    list-style: none;
    display: flex;
}

.menu-list a {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    transition: 0.6s ease;
}

.menu-list a:hover {
    color: #b5bbbb;
}

.menu-list-active {
    color: #ccc;
}

.menu-list li {
    padding-right: 25px;
}

.menu-dropdown {
    position: relative;
    display: inline-block;
}

.menu-dropdown-btn { /* The Button */
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    background: none;
    border: 0;
    cursor: pointer;
    margin: 0;
    height: 23px;
    transition: 0.6s ease;
  }

.menu-dropdown-btn:hover { /* The Button */
    color: #b5bbbb;
}

.menu-dropdown-content { /* The Content */
    position: absolute;
    left: -25px;
    z-index: -1;
    width: 85px;
    max-height: 0;
    margin-top:21px;
    padding: 20px 25px;
    background-color: white;
    border-radius: 9px;
    overflow: hidden;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    transition: opacity 0.6s ease, max-height 0.6s ease;
}

.menu-dropdown-content span { /* The Content */
    margin: 0 12px 0 0;
}

.menu-dropdown a { /* The Link */
    font-size: 0.95rem;
    margin: 0;
    display: block;
}

.menu-dropdown:hover {
    color: #1c459a;
}
    
.menu-dropdown-show {
    z-index: 10;
    opacity: 1;
    max-height: 200px;
}



.login-btn {
    width: fit-content;
    height: fit-content;
    padding: 5px 15px 5px 20px;
    background-color: #333;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.6s ease;
    cursor: pointer;
}

.login-btn:hover {
    background-color: #b5bbbb;
}

.login-btn a {
    color: white;
    display: flex;
    align-items: center;
}

.login-btn span {
    font-size: 1rem;
    font-weight: 500;
    padding: 0 5px 2px 0;
    pointer-events: none;
}



/* Menu Overlay (Mobile) ------------------ */

#sideNav {
    display: none;
}

@media screen and (max-width: 1128px) {
    #sideNav {
        display: block;
    }
}

#sideNav span {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

#sideNavMenu {
    position: fixed;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: white;
    overflow-x: hidden;
    transition: width 0.5s ease; /* Smooth transition */
    z-index: 1000;
}

.menu-mobile-overlay {
    position: relative;
    z-index: 90;
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    padding: 0 0 50px;
    background-color: #FBFCFF;
    overflow: auto;
    box-sizing: border-box;
}

.menu-mobile-closebtn { /* Invisible "X" on Top of SideNav*/
    width: 320px;
    height: 40px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-mobile-login {
    width: 320px;
    padding: 60px 30px 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-sizing: border-box;
}

.menu-mobile-login-a {
    color: white;
    width: fit-content;
    margin: 10px 0 12px;
    padding: 11px 25px;
    font-size: 1rem;
    line-height: 1rem;
    background: #333;
    border-radius: 25px;
    text-align: left;
}

.menu-mobile-login p {
    color: #222;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.menu-mobile-login h6 {
    font-size: 1.3rem;
    font-weight: 600;
    padding-bottom: 3px;
}

.menu-mobile-login-div1 {
    width: 100%;
    padding-bottom: 10px;
    display: flex;
    gap: 10px;
}



.menu-mobile-login-div2 {
    width: 100%;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-mobile-login-div2 img {
    width: 25px;
    height: 25px;
}

.menu-mobile-login-div2 a {
    font-size: 0.95rem;
}

.menu-mobile-title { 
/* For "Company" and "Resources" Section*/
    width: 320px;
    margin: 0;
    padding: 15px 30px;
    box-sizing: border-box;
}

.d-none {
    display: none;
}