/*
 * 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.
 */
/*
 * Really small screens and up
 */
/* @media only screen and (min-width: 220px) {} */
/*
 * Smalltouch sizes and up
 */
/* @media only screen and (min-width: 320px) {} */
/*
 * Smalltouch sizes and down
 */
@media only screen and (max-width: 480px) {
  /* 
   * Float Region Blocks - custom media query CSS example:
   * 
   * Float regions blocks is an Extension you can enable in the appearance
   * settings for your theme. This feature allows you to automatically float
   * blocks in regions, you can switch it on and off depending on your
   * requirements. For design purposes you many want to remove the floats for
   * devices where the entire theme is just one column - for example small
   * mobile phones. The following CSS is inside the custom media query:
   *
   *   @media only screen and (max-width: 480px){}
   *
   * This will target devices with a maximum width of 480px - most small phones.
   * In these smaller screen sizes we can remove the float and widths so all
   * blocks stack instead of displaying horizonally. The selector used is an
   * "attribute selector" which will match on any float block class. Use your
   * inspector or Firebug to get the classes from the page output if you need
   * more granular control over block alignment and stacking.
   */
  /* line 57, ../sass/responsive.custom.scss */
  .region[class*="float-blocks"] .block {
    float: none;
    width: 100%;
  }
}
/*
 * Tablet sizes and up
 */
/* @media only screen and (min-width: 768px) {} */
/*
 * Desktops/laptops and up
 */
/* @media only screen and (min-width: 1025px) {} */

/*# sourceMappingURL=responsive.custom.css.map */


@media only screen and (min-width:1024px) and (max-width:1366px) {

.header-container img {
    width: 200px;
}

.nav li a, .nav ul.menu li a {
    font-size: 1.1em;
    padding: 22px 20px;
}

.container .container, .region-leaderboard .region-inner  {
    max-width: 97%;
}

.region-leaderboard {
    font-size: 0.86em;
}

#block-block-6 h2 {
    font-size: 2em;
    padding-bottom: 10px;
    padding-top: 13px;
}

h3 {
    font-size: 1.17em;
    margin: 0.2em 0;
}

.history .slider-button a {
    font-size: 1.2em;
    padding: 16px 20px;
    transition: all 0.3s ease-out 0s;
}
#block-block-5 {
    margin-top: -10px;

}

body {
    font-size: 88%;

}

.masonry-item .views-field-body {
    font-size: 0.8em;
}
.header-container img {
    width: 180px;
}
.titleabout {
    padding: 40px 10px 40px 10px;
    font-size: 1.4em;

}

.block-title {
padding: 40px 10px 40px 10px;}


#block-block-9, #block-block-13, #block-block-11, #block-block-7 {
    padding: 60px 0px;
}

#menu-footer-menu-custom li a {

    font-size: 1em;
}

.field-name-field-images-after .field-items, .field-name-field-images-before .field-items{
	
	line-height: 0;

-webkit-column-count: 3;

-webkit-column-gap: 0px;

-moz-column-count: 3;

-moz-column-gap: 0px;

column-count: 3;

column-gap: 0px;
}

}