.contact-form{
  width: 85%;
  max-width: 600px;
  background: #FFFFFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  padding: 30px 40px;
  box-sizing: border-box;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 20px #FFFFFF;
  font-family: 'Dosis',sans-serif;
  z-index:100;
}
.contact-form h1{
  margin-top: 0;
  font-weight: 200;
}
.txtb{
  border:1px solid gray;
  margin: 8px 0;
  padding: 12px 18px;
  border-radius: 8px;
  resize:vertical;
}
.txtb label{
  display: block;
  text-align: left;
  color: #333;
  text-transform: uppercase;
  font-size: 14px;
}
.txtb input,.txtb textarea{
  width: 100%;
  border: none;
  background: none;
  outline: none;
  font-size: 18px;
  margin-top: 6px;
}
.btn{
  display: inline-block;
  background: #034CBC;
  padding: 14px 0;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  width: 100%;
}
 @keyframes fadeIt1 {
  0%   { box-shadow: #FFFFFF; }
  25%  { box-shadow: #0000FF; }
  50%  { box-shadow: #00FF00; }
  75%  { box-shadow:: #FF0000; }
  100% { fbox-shadow: #FFFFFF; }
}
