*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    user-select: none;
}

body{
    background-color: #fff;
    background-color: #E6E6FA;


}
 body::-webkit-scrollbar{
    display: none;
} 

.header{
    width: 100%;
    height: 4vw;
    padding: .1vw;
    position: fixed;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000;
    filter: drop-shadow(0vw .1vw .1vw #777);
}

.brandName{
    width: auto;
    height: 3vw;
    margin-left: 5vw;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* border: 1px solid greenyellow; */
}

.brandName img{
    width: 3vw;
    height: 3vw;
    display: flex;
    margin-right: 1vw;
    cursor: pointer;
    /* border: 1px solid rgb(74, 34, 255); */
}

.brandName div{
    height: 3vw;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid white; */
}
div .brandNameImg{
    width: 9vw;
    height: 3vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.headerNav{ 
    width: 50%;
    height: 3vw;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid greenyellow; */

}

.navElements{
    width: 100%;
    height: 3vw;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* border: 1px solid white; */
}

.navElement{
    width: auto;
    height: 3vw;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid greenyellow; */
}


.navElement a{
    color: #fff;
    padding: .5vw 1vw;
    text-decoration: none;
    font-size: 1.5vw;
    font-weight: 600;
    font-family: candara,segoe UI, Calibri, arial, sans-serif;
    /* border: .2vw solid #000; */
    /* border: 1px solid blue; */
}

.navElement a:hover{
    color: #fff;
    background-color: #000;
    border-bottom: .2vw solid #fff;
}


.userLog{
    width: auto;
    margin-right: 5vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /* border: 1px solid red; */
}

.userLog a{
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.logBtn{
    width: auto;
    height: 3vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 1.5vw;
    font-family: candara,segoe UI, Calibri, arial, sans-serif;
    font-weight: 550;
    padding: .5vw .5vw;
    cursor: pointer;
    border-style: none;
    border-radius: 5vw;
    background-color: #fff;
    /* border: .5px solid yellow; */
}

.logBtn img{
    width: 2.2vw;
    height: 2.2vw;
    margin-right: .8vw;
    /* border: 1px solid red; */
}
.logBtn div{
    margin-right: .5vw;
}

section{
    width: 100%;
    position: relative;
    top: 2vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* border: 1px solid; */
}

.leftSec{
    width: 19%;
    height: 100vh;
    position: fixed;
    top: 4vw;
    left: 0;
    padding: .5vw;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    background-color: #fff;
    border-right: 1px solid #f1f1f1;
    /* border: 1px solid red;  */
}

.leftSecHeader{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    /* border: 1px solid; */
}

.leftSecH1{
    width: 100%;
    margin: 1vw 0vw;
    padding: .5vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 1.5vw;
    font-weight: 800;
    font-family: candara;
    /* border: 1px solid; */
}

.leftSecCat{
    width: 100%;
    height: auto;
    padding: 0 .5vw;
    overflow-y: auto;
    /* border: 1px solid black; */
}

.leftSecCat ul{
    margin-top: 10px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    list-style: none;
}

.leftSecCatItems{
    margin-bottom: 1vw;
    border-radius: .7vw;
    background-color: #fff;
    border: 1px solid #f1f1f1;
    filter: drop-shadow(1px 1px 4px #f1f1f1);
    /* border: 1px solid orangered; */
}

.leftSecCatItems a{
    padding: .4vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: black;
    text-decoration: none;
    border-radius: .7vw;
    /* background-color: #f9f6f3; */
}

.leftSecCatItems a div{
    margin: .5vw 1.5vw;
    display: flex;
    align-items: center;
    font-size: 1.2vw;
    font-family: candara;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    /* border: 1px solid; */
}

#catItem6 a{
    color: blue;
    border: .1px solid black;
    box-sizing: border-box;
    background-color: #eeeef8;
}

.leftSecCatItems:hover{
    border: 1px solid black;
    background-color: #eeeef8;
}

#catItem6:hover{
    border: 1px solid rgb(255, 255, 255);
    background-color: #eeeef8;
}

.leftSecCatItems a:hover{
    color: blue;
}


.rightSec{
    width: 80%;
    position: absolute;
    right: 0;
    top: 2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #FAF9F6;
    background-color: #E6E0EE;
    background-color: #E6E6FA;
    /* border: 1px solid navy; */
}

 .rightSecHeader{
    width: auto;
    height: auto;
    margin: 2vw 0 2vw 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /* border: 1px solid hotpink; */
 }

.rightSecHeader p{
    color: #000;
    font-size: 2vw;
    font-weight: 600;
    font-family: Segoe UI, Calibri, arial, sans-serif;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.category{
    width: 100%;
    height: auto;
    margin: 3vw 0 1.5vw 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    /* border: 1px solid blue; */
}


.cards{
    width: 23vw;
    height: 19vw;
    overflow: hidden;
    margin-bottom: 5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: .7vw;
    background-color: #fff;
    /* border: 1px solid red; */
}

.cards a{
    text-decoration: none;
    border-radius: .7vw;
    border: 1px solid #ddd;
}

.cards:hover{
    border-style: none;
    filter: drop-shadow(0vw 0vw .5vw #a1a1a1);
}

.cardImg{
    width: 23vw;
    height: 15vw;
    display: flex;
    overflow: hidden;
    border-radius: .7vw;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    /* border: 1px solid violet; */
}

.cardImg img{
    width: 23vw;
    height: 15vw;
    border-radius: .7vw;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    /* border: 1px solid orangered; */
}

.exploreCard{
    width: 100%;
    height: 4vw;
    color: #000;
    font-size: 1.2vw;
    font-weight: 600;
    letter-spacing: .03vw;
    font-family: Segoe UI, candara, Calibri, arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 0.7vw;
    border-bottom-right-radius: 0.7vw;
    background-color: #fff;
    /* border: 1px solid red; */
}

.cards a:hover .exploreCard{
    color: #0000ff;
    border-style: none;
    background-color: #fff;
}