.navbar {
    width: 100%;
    background: linear-gradient(#d7e0fdb6, #d7e0fd2c, transparent);
    position: relative;
    z-index: 5;
}

.innerNav{
    width: 90%;
    max-width: 1920px;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 5;
    padding: 20px 0;
}

.navLogo {
    width: auto;
    height: 35px;
    object-fit: contain;
}

.navLinks {
    width: fit-content;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 6px;
    margin-left: auto;
}

.navLinks a {
    font-family: var(--font2);
    color: black;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 100%;
    padding: 10px 19px;
    border-radius: var(--br3);
    transition: 250ms ease-out;
}

.navLinks a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.dropdownArea {
    width: fit-content;
    height: fit-content;
    position: relative;
    margin-left: 50px;
}

.dropdownArea>button {
    font-family: var(--font2);
    color: black;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    cursor: pointer;
    border: none;
    padding: 10px 0;
}

.dropdownArea>button>img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.dropdownArea:hover .dropdownMenu {
    display: flex;
}

.dropdownMenu {
    border-radius: var(--br2);
    padding: 7px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: white;
    z-index: 10;
    display: none;
}

.dropdownMenu>button {
    font-family: var(--font2);
    color: black;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: transparent;
    cursor: pointer;
    border: none;
    padding: 10px 27px;
    border-radius: var(--br3);
    transition: 250ms ease-out;
}

.dropdownMenu>button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.dropdownMenu>button>img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.menuButton {
    font-size: 150%;
    background-color: black;
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: var(--br3);
    cursor: pointer;
    display: none;
    transition: 100ms ease-out;
}

.menuButton:active{
    transform: scale(0.95);
}

@media only screen and (max-width: 1400px) {
    .navLogo {
        height: 30px;
    }
    .navLinks {
        gap: 3px;
    }
    .navLinks a {
        padding: 10px 15px;
    }
    .dropdownArea {
        margin-left: 35px;
    }
}

@media only screen and (max-width: 1080px) {
    .navLinks {
        display: none;
    }
    .dropdownArea {
        margin-left: auto;
    }
    .menuButton {
        margin-left: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media only screen and (max-width: 768px) {
    .navLogo {
        height: 25px;
    }
    .dropdownArea>button {
        font-size: 90%;
    }
    .menuButton {
        width: 40px;
        height: 40px;
    }
    .menuButton {
        margin-left: 15px;
    }
    .dropdownMenu>button {
        padding: 10px 15px;
    }
}