/* Stile del pulsante con colore del font #EC6907 */
.fh-btn1 {
    color: #EC6907;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  border: transparent;
}
.btn1 {
    display: inline-block;
    font-weight: 600;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0px
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

/* Stile per l'hover del pulsante con colore del font #DF3A36 */
.fh-btn1:hover {
    color: #DF3A36 !important;
  border-color: transparent !important; 
}


/* Stile della freccia SVG nel pulsante */
.fh-btn1 svg {
    fill: currentColor;
    margin-left: 8px; 
}


.fh-btn1:hover svg path {
    stroke: #DF3A36 !important;
}

/* Stile del pulsante con colore del font #EC6907 */
.fh-btn1 {
    color: #EC6907;
    transition: color 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


