.btn-link {
    position: relative;
    margin-top: 23px;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    padding: 15px 34px;
    width: fit-content;
    text-decoration: none;
    text-transform: uppercase;
    min-width: 250px;
    justify-content: center;
    text-align: center;
    min-height: 60px;
}
.btn-link.btn_green {
    background: #67A260;
    color: #FFF;
}
.btn-link span {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: -23px;
    width: 45px;
    height: 45px;
    border: 3px solid #67A260;
    background-color: #FFF;
    border-radius: 50%;
}
.btn-link span {
    position: absolute;
}
.btn-link:hover {
    background: #FFA10F;
}
.btn-link:hover span {
    border-color: #FFA10F;
}
.btn-link:hover span svg path:not([fill]) {
    stroke: #FFA10F;
}
.btn-link:hover span svg path:not([stroke]) {
    fill: #FFA10F;
}