/* ==========================================================
   Component : Buttons
   Version   : 1.0.0
   Author    : ArianFile UI Kit
========================================================== */


/* ==========================================================
   Blue CTA Button
========================================================== */

.blue-cta-btn{

    background:var(--af-primary);
    color:#fff;

    border:none;
    border-radius:8px;

    padding:12px 24px;

    font:inherit;
    font-weight:700;

    cursor:pointer;

    transition:var(--af-transition);

    box-shadow:0 4px 14px rgba(15,94,255,.18);

}

.blue-cta-btn:hover{

    background:#0B4BCE;
    color:#fff;

    transform:translateY(-2px);

}


/* ==========================================================
   Download Button
========================================================== */

.download-direct-button{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:52px;

    padding:0 22px;

    border:none;
    border-radius:8px;

    background:var(--af-success);
    color:#fff;

    font:inherit;
    font-size:17px;
    font-weight:700;

    text-decoration:none;

    cursor:pointer;

    transition:var(--af-transition);

    box-shadow:0 4px 14px rgba(22,163,74,.16);

}

.download-direct-button:hover,
.download-direct-button:focus{

    background:#15803D;

    color:#fff;

    transform:translateY(-2px);

    text-decoration:none;

}


/* ==========================================================
   Simple Link
========================================================== */

.no-underline-link{

    color:var(--af-primary);

    text-decoration:none;

    font-weight:600;

    transition:var(--af-transition);

}

.no-underline-link:hover{

    color:#0B4BCE;

}


/* ==========================================================
   Responsive
========================================================== */

@media(max-width:768px){

    .download-direct-button{

        width:100%;

        height:50px;

        font-size:16px;

    }

}