.drop-up{
  -webkit-animation: drop-up 400ms ease both;
  -moz-animation: drop-up 400ms ease both;
  -o-animation: drop-up 400ms ease both;
  animation: drop-up 400ms ease both;
}
@-webkit-keyframes drop-up {
  0% { -webkit-transform: translateY(100px); }
  100% { -webkit-transform: translateY(0); }
}
@-moz-keyframes drop-up {
  0% { -moz-transform: translateY(100px); }
  100% { -moz-transform: translateY(0); }
}
@-o-keyframes drop-up {
  0% { -o-transform: translateY(100px); }
  100% { -o-transform: translateY(0); }
}
.banner{
  min-height: 150px;
  background-position: center;
  background-size: cover;
}
.banner-form{
  min-height: 350px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.formhead{
  background: rgba(255,255,255,0.5);
  border-radius: 5px;
}