.mySlides {display: none}
  
/* Imagenes de devices en Seccion Lo que hacemos */
@media only screen and (max-width: 599px){
  #img_device_small{  
    width: 100%;
    height: 200px;
    background-image: url('/assets/img/computer_small.jpg');
    background-position: center;
    background-repeat: no-repeat;

  }
}
      
@media only screen and (min-width: 600px) and (max-width: 767px){
  #img_device_medium{
    width: 100%;
    height: 300px;
    background-image: url('/assets/img/computer_medium.jpg');
    background-position: top-center;
    background-repeat: no-repeat;
  }
}

@media only screen and (min-width: 768px){
  #img_device_large{
    width: 100%;
    height: 350px;
    background-image: url('/assets/img/computer_large.jpg');
    background-position: top-right;
    background-repeat: no-repeat;
  }
}

/* Validation class style */
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
textarea:focus {
  outline: none;
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
}
    
.errorMsj {
  display: none;
}

#sendingMsjID {
  display: none;
}

/* Imagenes de Google Maps en nonscript */
#googleMap {
  display: none;
}

@media only screen and (max-width: 599px){
  #img_googlemaps_small{  
    width: 100%;
    height: 250px;
    background-image: url('/assets/img/googlemaps_small.png');
    background-position: center;
    background-repeat: no-repeat;
    
  }
}
      
@media only screen and (min-width: 600px) and (max-width: 767px){
  #img_googlemaps_medium{
    width: 100%;
    height: 350px;
    background-image: url('/assets/img/googlemaps_medium.png');
    background-position: center;
    background-repeat: no-repeat;
  }
}

@media only screen and (min-width: 768px){
  #img_googlemaps_large{
    width: 100%;
    height: 400px;
    background-image: url('/assets/img/img_googlemaps_large.png');
    background-position: center;
    background-repeat: no-repeat;
  }
}


/* Background error imagen we create  * /

 .bgimg{
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    }

    /* First image (Logo. Full height) * /
    .bgimg {
        background-image: url('../images/create.jpg');
        min-height: 50%;
    }

*/