.sign-the-pledge-wrapper {
  display: none;
}
@media only screen and (max-width: 768px) {
 .sign-the-pledge-wrapper {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  margin: 0 1rem 0 0;
  padding: 0;
  height: 3em;
  width: 100%;
  text-align: center;
  color: #fff;
  background-color: #00703c;
  line-height: 2em;
  text-decoration: none;
 }
 .sign-the-pledge {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0 1.5em 0 0;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 3rem;
  background-color: #00703c;
  text-decoration: none;
   
    &:hover {
      color: #fff;
    }
 }
 .sign-the-pledge-wrapper.hide {
   display: none;
 }
}