*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    overflow-x: hidden;
}
header{
    position: relative;
    z-index: 10;
}
.top-header{
    width: 100%;
    height: 2.5rem;
    background-color: #000000;
}
.bottom-header{
    width: 100%;
    height: 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.header-logo{
    width: 15%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-logo img{
    max-height: 5rem;
}
.header-navbar{
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-navbar ul{
    width: 100%;
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
}
li.nav-btn {
    padding: 15px;
    font-weight: 600;
}
.header-buttons{
    width: 15%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 25px;
}
.header-button-box{
    width: 35px;
    height: 35px;
    position: relative;
    /*border: 1px solid black;*/
}
.cart-count{
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background-color: red;
    position: absolute;
    top: -5px;
    right: -5px;
}
.cart-count p{
    font-size: 10px;
    text-align: center;
    color: #ffffff;
    font-weight: 900;
}
.custom-dropdown{
    position: absolute;
    width: 100%;
    height: 25rem;
    background-color: #ffffff;
    margin: auto;
    margin-top: 5px;
    border-radius: 0 0 20px 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

    /* animation setup */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s;
}

/* ACTIVE STATE */
.custom-dropdown.active{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-dropdown{
    display: flex;
    justify-content: space-between;
}
.menu-dropdown ul{
    list-style: none;
    padding: 0;
    line-height: 30px;
}
.dropdown-img{
     height: 100%;
}
.dropdown-img img{
    width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 20px;
}


/*Index Page Starts*/
.hero-section{
    width: 100%;
    height: 32rem;
    background-color: red;
}

/*Index Page Ends*/


 