/* Link */
.hd-button__link {
    background-color: #f07d00;
    border-radius: 0;
    border-style: none;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    margin: 0;
    outline: 0;
    color: white!important;
    overflow-wrap: break-word;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    white-space: pre-wrap;
    margin-top: 1rem;
    transition: background 300ms;
  }

  @media screen and (max-width: 1048px) {
    .hd-button__link {
        font-size: 1rem;
        padding: 10px 24px;
    }
}

  .hd-button__link:hover {
    background-color: #f07c00da;
  }


.is-dark .hd-button__link {
    background-color: #20201f;
}

.is-dark .hd-button__link:hover {
    background-color: #20201fbf;
}

.hd-button__icon{
    display: inline-block;
    margin-left: 8px;
}


