/*! 
 Pharma 1.1.1. ()
8 column layout,
mobile portrait - 1 column media 480px;;
mobile landsdcape- 2 column 480-640px;
table portrait - 3 column 640-768px;
else- 3>8 column 768px-1224px;
Copyright 2018, EMT team
*/
html {
    font-family: sans-serif;
}
body {
margin:0;
padding:0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
video {
    display: inline-block;
    vertical-align: baseline;
}






/* #### Mobile Phones Portrait #### */
@media screen and (max-device-width: 480px) and (orientation: portrait){
  /* some CSS here */
}

/* #### Mobile Phones Landscape #### */
@media screen and (max-device-width: 640px) and (orientation: landscape){
  /* some CSS here */
}

/* #### Tablets Portrait or Landscape #### */
@media screen and (min-device-width: 768px) and (max-device-width: 1024px){
  /* some CSS here */
}

/* #### Desktops #### */
@media screen and (min-width: 1024px){
  /* some CSS here */
}


