/* ===================================================
   BUTTON SYSTEM
   BAW Solutions v2.03
   =================================================== */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:.75rem;

    padding:14px 30px;

    border:none;

    border-radius:14px;

    cursor:pointer;

    text-decoration:none;

    font-weight:700;

    font-size:15px;

    transition:all .35s ease;

    white-space:nowrap;

}

.btn-primary{

    background:linear-gradient(135deg,#0B5CFF,#009DFF);

    color:#fff;

    box-shadow:0 15px 35px rgba(11,92,255,.25);

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 45px rgba(11,92,255,.35);

}

.btn-secondary{

    background:#071A33;

    color:#fff;

}

.btn-outline{

    background:transparent;

    border:2px solid #0B5CFF;

    color:#0B5CFF;

}

.btn-outline:hover{

    background:#0B5CFF;

    color:#fff;

}

.btn-white{

    background:#fff;

    color:#071A33;

}

.btn-lg{

    padding:18px 40px;

    font-size:17px;

}

.btn-sm{

    padding:10px 22px;

    font-size:14px;

}

.btn-block{

    width:100%;

}