/** All baseline division is 16px
    Exp: width 1024px: 1024/16 = 64em
         font-size: 24px/16 = 1.5em
**/
/*overall CSS / 1024px = 64em -----------*/
@media screen 
and (min-width: 64em) {
      
    
}
/* Smaller than 1024px = 64em  -----------*/
@media screen
and (max-width: 64em) {
    .global_wrap {
        width: 95%;
    }    
}
/* Smaller than 880px = 55em -----------*/
@media screen 
and (max-width: 55em) {
    #header_row1 {
        font-size: 90%;
    }
}
/* Smaller than 320px = 16em -----------*/
@media screen
and (max-width: 16em) { 
    
}