/*
 * responsive.custom.css is for custom media queries that are not set via the
 * theme settings, such as cascading media queries.
 *
 * By default all the other responsive stylesheets used in Adaptivetheme use a
 * "stacking method", however cascading media queries use a waterfall method so
 * you can leverage the cascade and inheritance for all browsers that support
 * media queries, regardless of screen size.
 *
 * @SEE http://zomigi.com/blog/essential-considerations-for-crafting-quality-media-queries/#mq-overlap-stack
 *
 * NOTE: this file loads by default, to disable got to your theme settings and
 * look under the "CSS" settings tab.
 */

@media only screen and (max-width: 1200px) {
  .nav li a,
  .nav ul.menu li a {
    font-size: 1em;
    margin: 0 55px 0 0;
  }

#logo img {
  width: 300px;
}

}

@media only screen and (max-width: 800px) {
 #logo {
  float: none;
  margin: 15px 0 5px 0;
}

#site-name {
    margin: 0;
    font-size: 150%;
    padding: 10px 0;
}

}



@media only screen and (max-width: 480px) {
  .region[class*="float-blocks"] .block {
    float: none;
    width: 100%;
  }
}
