/*
 * 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: 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.
   */
  .region[class*="float-blocks"] .block {
    float: none;
    width: 100%;
  }
}

@media only screen and (max-width: 580px) {
   #trabaja-con-nosotros .pane-node-webform {
    padding-left: 1.5em !important;
    padding-bottom: 1em;
  }
  .contenido_negocios img{
  width: 50% !important;
   margin: 0 auto;
  text-align: center;

}
}

/*
 * Tablet sizes 
 */
 @media only screen and (max-width: 850px) {
  #contactenos #webform-client-form-14 .webform-component{
    width: 100%;
  }
  #contactenos .webform-component--codigo{
    width:22% !important; 
  }
  #contactenos .webform-component--telefono{
   width: 75.333% !important;
    margin: 0px !important;
  }
  #contactenos .webform-component--mensaje {
    width: 92.222% !important;
  }
  #linea-negocios .pane-linea-de-negocios{
    padding: 1em 2em 1em 0em; 
  }
  #webform-client-form-14 .form-actions {
    margin-left: 0.5em;
    margin-bottom: 2em;
  }
    #trabaja-con-nosotros .pane-node-webform {
    padding-left: 12.555em;
}
#contactenos input[type="submit"]{
    right: 2.5em;
}
.contenido_negocios img{
  width: 40%;
   margin: 0 auto;
  text-align: center;

}

 } 

@media screen and (max-width: 1200px) and (min-width: 851px)  {
   #webform-client-form-14 {
    width: 99.333% !important;
  }
  #trabaja-con-nosotros .pane-node-webform {
    padding-left: 12.555em;
}
}

@media screen and (max-width: 1200px) and (min-width: 1025px)  {
  #trabaja-con-nosotros .pane-node-webform {
    padding-left: 10.555em;
  }
}

/*
 * Desktops/laptops and up
 */
 @media only screen and (min-width: 1525px) {

    
    .pane-quienes-somos .item-list ul li{
      height: 155px;
        line-height: 25px;
        margin: 0 1em;
        width: 18%;
    }
    .view-linea-de-negocios .views-field-title span{
        line-height: 25px;
     }
     .view-linea-de-negocios .views-row{
       min-height: 260px;
     }

       .pane-quienes-somos .item-list ul li{
    height: 160px;
  }

  .pane-quienes-somos .item-list ul li a {
    margin: 0px 66px !important;
  }
 

 #mini-panel-contactenos .pane-entity-field-extra{
  padding: 0em 17em;
 }

.pane-inicio > div:first-child{
  min-height: 900px;
 }


  }

  @media only screen and (min-width: 2600px) {
 

  }
