footer {
  background: #1F5633;
  color: #fafafa;
}

#scroll-top {
  background: none;
  border: none;
  border-radius: 3px;
  color: #8EC63F;
  cursor: pointer;
  display: none;
  font-size: 2.2em;
  padding: 0 10px;
  position: fixed;
  bottom: 45px;
  right: 31px;
  text-align: center;
  z-index: 100;
  opacity: .5;
}

#scroll-top:hover {
  opacity: 1;
}



/*Footer - Formulario de contacto*/
/*===============================*/
footer #contact-form input[name=nombre]{
    border-top: 1px solid rgba(255, 255, 255, 0.38);
}
footer #contact-form input, footer #contact-form textarea{
    border: none;
    background: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.38);
    border-left: none;
    border-right: none;
    margin-bottom: 2px;
}
footer #contact-form input[name=email]{
    border-right: 1px solid rgba(255, 255, 255, 0.38);
}



/*==================================================
=                  Media Queries                   =
====================================================*/
/*Big screens*/
@media only screen and (min-width: 1300px){
    
}

/* Tablet, ipad portrait 768px */
@media only screen and (min-width: 768px) and (max-width: 959px) {
    
}

/* Tablet, ipad landscape 1024px */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) { 
    
}

/* Mobile portrait ancho 300px */
@media only screen and (max-width: 767px) {
  footer #contact-form input[name=email]{
      border-right: none;
  }    
}

/* Mobile landscape ancho 420px */
@media only screen and (min-width: 480px) and (max-width: 767px) {
    
}