#heading {

    width: 100%;
    height: 200px;
    margin: auto;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    margin-bottom: 1rem
}

.nav {
    display: flex;
    width: 100%;
    max-height: 50%;
    justify-content: center;
    position: sticky;
    row-gap: 10px;
    column-gap: 10px;

}

#search_bar {
    width: 45%;
    height: 2rem;
    margin-top: 0.5rem;
    padding-left: 2rem;
    text-align: start;
    border: 1px solid grey;
    border-radius: 4px;
}

#search_bar:focus {
    border-style: green;
}

#nav1 {
    width: 14%;
    margin-top: 2rem;
    padding-bottom: 2rem;
}

#nav1 > img {
    width: 100%;
    max-width: 100%;
    margin-top: -50%;
}


#lnk {
    width: 75px;
    height: 3rem;
    padding-top: 30px;
}

#lnk > img {
    position: sticky;
    margin-top: -30px;
    width: 70%;
}

#login {
    width: 8%;
    text-align: center;
    margin-left: 10px;
    background-color: rgb(32, 32, 32);
    color: white;
    height: 3rem;
    padding: 7px;
    border: 2px solid black;
    border-radius: 13px;
    text-decoration: none;
}

#location {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: sticky;
    width: 12%;
    margin-top: 0px;
    height: 2.5rem;
    background-color: rgb(238, 238, 238);
    color: black;
    text-align-last: right;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;

}

#location > img {
    width: 30px;
}

#dropdown_list h6 {
    display: flex;
    justify-content: space-between;
}

#dropdown_list {
    width: 12%;
    height: 40%;
    background-color: rgb(94, 148, 0);
    position: sticky;
    margin-top: 10px;
    margin-left: 60px;
    border-radius: 13px;
}

#dropdown_list p {
    padding-left: 1rem;
    padding-top: 0.5rem;
    font-size: 1.2rem;
}

#dropdown_list h6 {
    font-size: 1.5rem;
    padding: 1rem;
}

#dropdown_list a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
}

#drop1 {
    display: none;
    background-color: white;
}

#dropdown_list:hover #drop1 {
    display: block;
    position: absolute;
    margin-top: 0px;
    margin-left: -2px;
}

#dropdown_list:hover #drop1 a {
    display: block;
    color: black;
    border-bottom: 1px solid black;
    border-left: 1px solid black;
    border-right: 1px solid black;
    padding: 5px;
}

#dropdown_list:hover #drop1 a:first-child {
    border-top: 1px solid black;
}

#drop1 a:hover {
    background-color: lightgray;
}

#offers {
    width: 12%;
    height: 25%;
    text-align: center;
    margin-left: 80%;
    margin-top: -50px;
    border-radius: 3px;
    background-color: rgb(94, 148, 0);
}

#offers p {
    font-size: 1.2rem;
    padding: 0.4rem;
}

#offers :hover {
    cursor: pointer;
    background-color: rgb(94, 148, 0);
    border-radius: 3px;
    color: white;
}