.btn {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
    height: 40px;
    border: 1px solid transparent;
    line-height: 40px;
    border-radius: 100px;
    display: flex;
    text-align: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s;
    align-items: center;
    gap: 10px;
    
}

.btn:hover {
    opacity: 0.6;
}

.btn-orange {
    background: var(--primary);
    color: var(--white-500);
}

.btn-black {
    background: var(--black-500);
    color: var(--white-500);
}

.btn-gradient {
    background: var(--main-gradient);
    color: var(--white-500);
}

.btn-icon-plus::before{
    content: "";
    width: 16px;
    height: 16px;
    background: url(/wp-content/themes/biohacking-redesign/img/icons/icon-plus.svg) no-repeat;
}

.btn-icon-arrow::after {
    content: "";
    width: 12px;
    height: 10px;
    background: url(/wp-content/themes/biohacking-redesign/img/icons/arrow-rigth.svg) center no-repeat;
}

.btn-border-primary{
    border-color:var(--primary);
    color:var(--primary);
}



/* .btn-orange:hover {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
} */