/* Mobile devices */
@media screen and (max-width: 480px) {
 
    .header-box ul {
        flex-wrap: wrap;
    }

    .header-box ul li>.vertical-hr {
        display: none;
    }
}

/*  iPads, Tablets (Portrait)*/
@media (min-width: 481px) and (max-width: 768px) {
    .header-box ul {
        flex-wrap: wrap;
    }

    .header-box ul li>.vertical-hr {
        display: none;
    }
}

/* Small screens, laptops or ipad (Landscape) */
@media (min-width: 769px) and (max-width: 1024px) {


    .header-box ul {
        flex-wrap: wrap;
    }

    .header-box ul li>.vertical-hr {
        display: none;
    }

    
}

@media (min-width: 1300px) and (max-width: 1500px) {
}
