/* GLOBAL STYLES
-----------------

	

/* DESKTOP STYLES
-----------------
Add styles inside the media query below that you only want to be applied to the desktop layout of your site */
@media only screen and (min-width: 768px) {


}

/* MOBILE STYLES
-----------------
Add styles inside the media query below that you only want to be applied to the mobile layout of your site */
@media only screen and (min-width : 20px) and (max-width : 767px) {


}

/* IPAD STYLES
-----------------
Add styles inside the media query below that you only want to be applied to the mobile layout of your site */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait)  {


}