/*
 * 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.
 *
 * @SEE http://zomigi.com/blog/essential-considerations-for-crafting-quality-media-queries/#mq-overlap-stack
 *
 * NOTE: this file loads by default, to disable go 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: 479px) {
  /* 
   * 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.
   */
  .region[class*="float-blocks"] .block {
    float: none;
    width: 100%;
  }
}

/*
 * Tablet sizes and down
 */
@media only screen and (max-width: 767px) {


} 

/*
 * Desktops/laptops and up
 */
/* @media only screen and (min-width: 1025px) {} */
@media only screen and (min-width: 0px) and (max-width: 319px) {
#circleback2wrap {
display:none;
}
.contact-icons {
display:none;
}
.nav-1 {left: 0px;  top: -74px;}
.nav-2 {left: 0px;   top: 145px;}
.herodiv {display:none;}
.herodivbottom{display:none;}
.nav-3 {left: 0px; top: 354px;}
.nav-4 {left: 0px; top: 550px;}
#header {
z-index:100;
position:relative;
}
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
#header {
z-index:100;
position:relative;
}
#circleback2wrap {
width:150px;
height:150px;
}
.image-style-large {
    height: 150px;
    width: 150px;
}
.node-type-article .ia-r .field-type-image figure,
.node-type-article .iat-r .field-type-image figure {
  margin: -150px 0 15px 20px;
}
.contact-icons {
display:none;
}
.navigation h3 {
    font-size: 1em;
    line-height: 4.5;
}
.navigation a {
    line-height: 4.5;
}
.nav-1 {left: 35px;  top: -38px;
background-size: 163px 163px;
height:163px;
width:163px;
}
.nav-2 {left: -9px;  top: 120px;
background-size: 163px 163px;
height:163px;
width:163px;
}
.nav-3 {left: 157px;  top: 224px;
background-size: 163px 163px;
height:163px;
width:163px;
}
.nav-4 {left: 195px;  top: 57px;
background-size: 163px 163px;
height:163px;
width:163px;
}
.nav-1 .vc-info > div {
    background: none repeat scroll 0 0 / 163px 163px #AFE43E;
}
.vc-info-wrap {
    border-radius: 50% 50% 50% 50%;
    height: 210px;
    left: 5px;
    position: absolute;
    top: 24px;
    width: 210px;
}
.vc-info {
    height: 130px;
    width: 130px;
}
.herodiv {left: 65px;}
.herodivbottom{left: -73px;}
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
#circleback2wrap {
width:250px;
height:250px;
}
.image-style-large {
    height: 250px;
    width: 250px;
}
.node-type-article .ia-r .field-type-image figure,
.node-type-article .iat-r .field-type-image figure {
  margin: -250px 0 15px 20px;
}
.nav-1 {left: 20px;  top: -38px;}
.nav-2 {left: -34px;}
.herodiv {left: 130px;}
.herodivbottom{left: -8px;}
.nav-3 {left: 190px; top: 310px;}
.nav-4 {left: 285px; top: 57px;}
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
.nav-1 {left: 0;}
.nav-2 {left: 156px;}
.herodiv {left: 330px;}
.herodivbottom{left: 192px;}
.nav-3 {left: 390px; top: 310px;}
.nav-4 {left: 505px; top: 57px;}
}
@media only screen and (min-width: 1141px) {
body.not-front #page {
	border-right: solid 1px #53D5FB;
	border-left: solid 1px #53D5FB;
}
}
