/* ==========================================================
   PHIUM BUTTON SYSTEM
========================================================== */

.phium-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 36px;

border-radius:50px;

text-decoration:none;

font-weight:600;

font-size:15px;

transition:.35s;

cursor:pointer;

border:none;

}

/* Primary */

.phium-btn-primary{

background:#c28b68;

color:#fff;

}

.phium-btn-primary:hover{

background:#a9724f;

transform:translateY(-2px);

}

/* Outline */

.phium-btn-outline{

background:transparent;

border:2px solid #c28b68;

color:#c28b68;

}

.phium-btn-outline:hover{

background:#c28b68;

color:#fff;

}

/* Dark */

.phium-btn-dark{

background:#2b1c15;

color:#fff;

}

.phium-btn-dark:hover{

background:#000;

}