/*Mobile Styles*/
/* Additional Media Queries here: https://css-tricks.com/snippets/css/media-queries-for-standard-devices/ */
/*Break Points*/

@media only screen and (min-width: 980px) and (max-width: 1080px) {
    /* square displays */
}

@media only screen and (min-width: 768px) and (max-width: 980px) {
    /* tablets */

}

@media only screen and (max-width: 767px) {
    /* phones */
}

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

}