/* =========================================================
   HOME PAGE
   pages/public/home.php
========================================================= */

.fi-home-hero{

    max-width:900px;

    margin:80px auto;

    text-align:center;
}

.fi-home-badge{

    display:inline-flex;

    align-items:center;

    height:32px;

    padding:0 14px;

    border:1px solid #E5E7EB;

    border-radius:30px;

    background:#fff;

    font-size:12px;

    color:#64748B;

    margin-bottom:20px;
}

.fi-home-title{

    font-size:18px;

    font-weight:600;

    color:#111827;

    margin-bottom:16px;
}

.fi-home-desc{

    max-width:700px;

    margin:0 auto 30px;

    font-size:14px;

    color:#64748B;

    line-height:1.7;
}

.fi-home-search{

    display:flex;

    gap:12px;

    justify-content:center;

    align-items:center;
}

.fi-home-input{

    width:420px;

    height:44px;

    border:1px solid #E5E7EB;

    border-radius:10px;

    padding:0 14px;

    background:#fff;

    font-size:14px;
}

@media(max-width:768px){

    .fi-home-search{

        flex-direction:column;
    }

    .fi-home-input{

        width:100%;
    }

    .fi-home-hero{

        margin:40px auto;
    }

}