/* the download button */
    .download {
    margin: 30px 0 0;
    fill: #e34440!important;
    background-color: #e34440!important;
    border: 1px solid #e34440!important;
    border-radius: 5px!important;
    color: #fff!important;
    font-family: Figtree,sans-serif!important;
    font-size: 24px!important;
    font-weight: 700!important;
    padding: 16px 50px!important;
    transition: all 0.2s ease-in-out;
    text-align: left;
    }
    
/* the submit button hover */
    .download:hover {
    border-radius: 0;
    -webkit-transition: all 0.2s 0s ease;
    -moz-transition: all 0.2s 0s ease;
    -o-transition: all 0.2s 0s ease;
    transition: all 0.2s 0s ease;
    }
  @media (min-width: 768px) {
    .hide-mobile {
      display: none;
    }
  }
  @media (max-width: 767px) {
    .hide-desktop {
      display: none;
    }
  }