#form-submitMsg{
  position: fixed;
  bottom: -120px;
  width: 100%;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 100;
  font-size: 18px;
  font-weight: 300;
}
#form-submitMsg p{
  width: 70%;
  max-width: 1000px;
  text-align: center;
  background: #272727;
  color: white;
  border-radius: 7px;
  margin: 0 auto;
  padding: 20px;
}
#form-submitMsg.show{
  bottom: 33%;
  opacity: 1;
}
