.button1{
    width: 100%;
    height: 36px;
    border: 1px solid #9D8F66;
    margin-bottom: 20px;
    cursor: pointer;

    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
  }
  .button1:hover{
    background: #9D8F66;
  }

  .button1 a{
    font-family: Lato, "Noto Sans HK", "Noto Sans SC", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 0em;
    color: #9D8F66;
    text-align: center;letter-spacing: 1px;
  }
  .button1:hover a{
    color: #FFF !important;
  }

  /* Mobile */
@media screen and (max-width: 991px) {
    .button1{
        width: 100%;
        border: 0.5px solid #9D8F66;
    }
    .button1 a{
        font-family: Lato, "Noto Sans HK", "Noto Sans SC", sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 34px;
        color: #9D8F66;
        text-align: center;
    }
}