/* Small Laptops */
@media only screen and (min-width: 768px) and (max-width: 1023px) {

}

/* Portrait */
@media only screen and (min-width: 768px) and (max-width: 1023px) and ((orientation: portrait) or (max-aspect-ratio: 1/1)) {

}

/* Landscape */
@media only screen and (min-height: 768px) and (max-height: 1023px) and ((orientation: landscape) or (max-aspect-ratio: 1/1)) {

}