/* for tablet */

/* product section responsive code  */

@media ( max-width:992px) {

    #header{
        height: 100%;
        margin: auto;
    }
    .fluid-container{
        width: 100%;
        /* flex-direction: column-reverse; */
        flex-wrap: wrap;
    }
    .fluid-container-hero{
        width: 100%;
        flex-direction: column-reverse;
        flex-wrap: wrap;
    }
    .fluid-container-hero img{
        width: 80%;
    }
    .container{
        width: 100%;
    }
    .collections{
        grid-template-columns: repeat(2,1fr);
    }
    .half-width{
        width: 100%;
    }
    .menu{
        display: none;
    }
    .logos{
        flex-wrap: wrap;
        gap: 20px;
    }

}

/* @mobile */

@media (max-width:768px){
    .collections{
        grid-template-columns: repeat(1,1fr);
        margin: auto;
    }

    #blog{
        width: 80%;
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
        align-items: center;
        margin: auto;
        margin-bottom: 50px;
    }
}


