/*
========================================
HERO
========================================
*/

.hero{

    padding:80px 0;

    background:#f8fafc;

}

.hero-content{

    text-align:center;

}

.hero h1{

    font-size:56px;

    margin-bottom:20px;

    color:var(--color-primary);

}

.hero p{

    font-size:20px;

    color:#64748b;

    margin-bottom:40px;

}

.search-bar{

    display:flex;

    align-items:center;

    justify-content:space-between;

    background:#fff;

    border-radius:60px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    overflow:hidden;

    max-width:1050px;

    margin:auto;

}

.search-field{

    flex:1;

    display:flex;

    align-items:center;

    padding:22px 28px;

}

.search-field:first-child{

    border-right:1px solid #ececec;

}

.search-field input{

    border:none;

    outline:none;

    background:none;

    width:100%;

    font-size:18px;

}

.search-icon{

    font-size:22px;

    margin-right:15px;

}

.search-button{

    background:#1d4ed8;

    color:#fff;

    border:none;

    padding:22px 38px;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.search-button:hover{

    background:#2563eb;

}

.hero-tags{

    margin-top:25px;

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}

.hero-tags span{

    font-weight:700;

}

.hero-tags a{

    background:#eef4ff;

    color:#2563eb;

    padding:8px 15px;

    border-radius:20px;

    transition:.3s;

}

.hero-tags a:hover{

    background:#2563eb;

    color:#fff;

}