@media screen and (max-width: 40em){

}

/** smartphones-portrait-landscape */
@media only screen and (max-width: 767px){

}

/** smartphones-landscape */
@media only screen and (max-width: 767px) and (orientation: landscape){

}

/** smartphones-portrait */
@media only screen and (max-width: 767px) and (orientation: portrait){
  #header .content h2{margin-top: 66px; margin-left: 160px;}
  #header .content h2, #header .content h4{font-size: 16px; margin-left: 160px;}
  #header .content h4{font-size: 14px; margin-top: 4px;}
}

/** tablet-portrait-landscape */
@media only screen and (min-width: 768px) and (max-width: 1024px){

}

/** tablet-landscape */
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape){

}

/** tablet-portrait */
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait){

}

/** desktops-laptops */
@media only screen and (min-width: 1025px){

}