/*--------------------------------- Responsive Media Quaries -----------------------------*/
@media only screen and (min-width: 1200px) {}


/* Medium Device = 1200px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {}

/* Tablet Device = 768px */
@media only screen and (min-width: 768px) and (max-width: 991px) {}

/* Wide Mobile = 480px */
@media only screen and (max-width: 767px) {}

/* Small Device = 320px */
@media only screen and (max-width: 479px) {}