/* mobile1 */
@import url("mobile1.css") only screen and (max-width:299px);
/* mobile2 */
@import url("mobile2.css") only screen and (min-width:300px) and (max-width:320px);
/* mobile3 */
@import url("mobile3.css") only screen and (min-width:321px) and (max-width:533px);
/* mobile4 */
@import url("mobile4.css") only screen and (min-width:534px) and (max-width:640px);
/* tablet1 */
@import url("tablet1.css") only screen and (min-width:641px) and (max-width:1067px);
/* desktop1 */
@import url("desktop1.css") only screen and (min-width:1068px);

