/* Start of Code to keep the main category section collapsed by default */
.header .all-category .main-category{
    opacity:0;
    visibility:hidden;
    -webkit-transition:all 0.4s ease;
    -moz-transition:all 0.4s ease;
    transition:all 0.4s ease;
}
.header .all-category:hover .main-category{
    opacity:1;
    visibility:visible;
}
/* End of Code to keep the main category section collapsed by default */

/* Start of Code to keep the hero slider hidden by default */
.hero-slider {
    display: none;
}
/* End of Code to keep the hero slider hidden by default */
/* ************************************************************************************************************* */