@media only screen and (max-width: 600px) {

.min-mob-h-100{
    min-height: 100vh;
}

.sub-menu-content{
    min-height: 100vh;
}

.close-btn,.back-btn{
    width:40px;
    height: 40px;
    position: relative;
}
.close-btn:after{
    content: "";
    width: 30px;
    background-color: var(--Fourth-Color);
    transition: color 0.3s ease;
    transition: background-color 0.3s ease;
    position: absolute;
    top: calc(50% - 15px);
    left: calc(50% - 15px);
    z-index: 9999;
    height: 30px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    background: url(../icons/x-square.svg);
    background-size: contain;
}
.back-btn:after{
    content: "";
    width: 30px;
    background-color: var(--Fourth-Color);
    transition: color 0.3s ease;
    transition: background-color 0.3s ease;
    position: absolute;
    top: calc(50% - 15px);
    left: calc(50% - 15px);
    z-index: 9999;
    height: 30px;
    transform: rotate(180deg);
    transition: transform 0.3s ease;
    background: url(../icons/chevron-right.svg);
    background-size: contain;
}
.category-heading{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0;
}

}