*
{
    box-sizing: border-box;
}

.navbar
{
    display: flex;
    height: 60px;
    font-family: 'Gotham Rounded','Helvetica',sans-serif;
    font-size: small;
    padding: 0 10%;
    background-color: white;
    overflow: visible;
}

.logocontainer
{
    width: 25%;
    height: 100%;
    display: flex;
    justify-content: center;
    cursor: pointer;

}
.lists
{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-around;


}
.shop
{
    width: 25%;
    height: 100%;
    padding: 13px;
    display: flex;
    align-items: center;
    justify-content: space-around;

}

.bell
{
    width:100%;
    font-size: 25px;
}

.fa-bell{

    position: relative;

}

.number
{
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: lightslategray;
    font-size: x-small;
    text-align: center;
    left: 55%;
    top: 1%;
    border-radius: 50%;
    color: #FFFFFF;
    font-family: "monospace";
}
.fa-bell:hover {
    animation: shake 0.82s ease-in-out;
    cursor: pointer;

}

@keyframes shake {
    10%, 90% {
        transform: translate(-1px, 0);
    }

    20%, 80% {
        transform: translate(2px, 0);
    }

    30%, 50%, 70% {
        transform: translate(-4px, 0);
    }

    40%, 60% {
        transform: translate(4px, 0);
    }
}

.fa-angle-down
{
    position: relative;
    padding: 0 5px;
}

.fa-angle-up
{
    position: absolute;
    left:5px;
    visibility: hidden;
}
.listitem:hover .fa-angle-down
{
    visibility: hidden;
}
.listitem:hover .fa-angle-up
{
    visibility: visible;
}
.listitem
{
    padding: 4%;
    height: 100%;
    position: relative;
    transition: box-shadow 0.5s;
}
.listitem:hover
{
    box-shadow: inset 0 -7px 0 black;
    cursor: pointer;
}
.ourproducts
{
    width: 1092px;
    background-color: white;
    position: absolute;
    left: -278px;
    top: 60px;
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    font-family: Gotham;

}

.listitem:hover .ourproducts
{
    display: flex;
    opacity: 1;
}

.ourproductsitem
{
    width: 16.5%;
    border: 1px solid lightgrey;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.8s;
    padding: 1%;

}
.ourproductsitem:hover
{
    box-shadow: inset 0 -7px 0 black;
    cursor: pointer;
}

.exploreourpdroducts
{
    width: 33%;
    border: 1px solid lightgrey;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.exploreourpdroducts a
{
    text-decoration: none;
    color: black;
    border: 1px solid black;
    padding: 5px;
    transition: background-color 0.5s ease-in-out, width 0.5s ease-in-out, height 0.5s ease-in-out;
    width: 60%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.exploreourpdroducts a:hover
{
    background-color: #263e3d;
    color: #FFFFFF;
    width: 62%;
    height: 18%;

}