/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
  
    /* CSS */
    
  }
  
  /* 
    ##Device = Laptops, Desktops
    ##Screen = B/w 1025px to 1280px
  */
  
  @media (min-width: 1025px) and (max-width: 1280px) {
    
    /* CSS */
    
  }
  
  /* 
    ##Device = Tablets, Ipads (portrait)
    ##Screen = B/w 768px to 1024px
  */
  
  @media (min-width: 768px) and (max-width: 1024px) {
    
    /* CSS */
    .huella {
      right: auto;
    width: 100%;
    top: 160px;
  }
    .huella-left { 
      display: none;
  }   
  h2.subtitle {
    width: 100%;
    font-size: 1.5em;
    height: 40px;
    margin-bottom: 20px;
} 
.box-card {
  margin-bottom: 30px;
  height: auto; 
}
  }
  
  /* 
    ##Device = Tablets, Ipads (landscape)
    ##Screen = B/w 768px to 1024px
  */
  
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    
    /* CSS */
    
    .huella {
      right: auto;
    width: 100%;
    top: 160px;
  }
    .huella-left { 
      display: none;
  } 
h2.subtitle {
  width: 100%;
  font-size: 1.5em;
  height: 40px;
  margin-bottom: 20px;
} 
.box-card {
  margin-bottom: 30px;
  height: auto; 
}
  }
  /* 
    ##Device = Low Resolution Tablets, Mobiles (Landscape)
    ##Screen = B/w 481px to 767px
  */
  
  @media (min-width: 481px) and (max-width: 767px) {
    
    /* CSS */
    .logo__kairos{
        width: 240px;
    }
  }
  
  /* 
    ##Device = Most of the Smartphones Mobiles (Portrait)
    ##Screen = B/w 320px to 479px
  */
  
  @media (min-width: 320px) and (max-width: 480px) {
    
    /* CSS */
    .logo__kairos{
        width: 180px;
    }
    h1.title {
      font-size: 20px; 
      margin-top: -15%; 
  }
  h2.subtitle {
    width: 100%;
    font-size: 1.5em;
    height: 40px;
    margin-bottom: 20px;
}
    .huella {
      right: auto;
    width: 100%;
    top: 160px;
    }
    .huella-left { 
      display: none;
  } 
  .box-card {
    margin-bottom: 30px;
    height: auto; 
  }
  .box-servicios { 
    height: auto;
    margin-bottom: 30px;
}
  }