/* =====================================================
   Hero
===================================================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:120px;

}

.hero h1{

    font-size:68px;

    line-height:1.05;

    font-weight:800;

    margin:18px 0;

}

.hero p{

    color:var(--text-secondary);

    font-size:20px;

    max-width:620px;

}

.badge{

    display:inline-flex;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(0,168,255,.12);

    color:var(--primary);

    border:1px solid rgba(0,168,255,.3);

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:40px;

}

.btn-secondary{

    padding:14px 28px;

    border-radius:999px;

    border:1px solid var(--border);

    color:white;

}

.hero-world{

    height:520px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:180px;

    animation:float 5s ease-in-out infinite;

}

@keyframes float{

0%{transform:translateY(0);}

50%{transform:translateY(-15px);}

100%{transform:translateY(0);}

}

@media(max-width:992px){

.hero{

text-align:center;

}

.hero h1{

font-size:46px;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.bs-header ul{

display:none;

}

}