/*
* Media Queries CSS.
* @PopCornCommunication.
*/

/* Extra small devices (phones, less than 768px) */
/* XS */
@media (max-width: 767px) {
  h1, .h1 { font-size: 2rem !important; } /* 2.5rem */
  h2, .h2 { font-size: 1.75rem !important; } /* 2rem */
}

/* Small devices (tablets, 768px and up) */
/* SM */
@media (min-width: 768px) {
  h1, .h1 { font-size: 2rem !important; } /* 2.5rem */
  h2, .h2 { font-size: 1.75rem !important; } /* 2rem */
}

/* Medium devices (desktops, 992px and up) */
/* MD */
@media (min-width: 992px) {
}

/* Large devices (large desktops, 1200px and up) */
/* LG */
@media (min-width: 1200px) {

}

/* Extra Large devices (large desktops, 1400px and up) */
/* XL */
@media (min-width: 1400px) {}

