@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

html,
body{
    margin:0;
    padding:0;
    overflow-x:hidden;
    font-family:'Outfit',sans-serif;
}

/* ======================================== */
/* HEADER */
/* ======================================== */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    backdrop-filter:blur(14px);
    background:linear-gradient(
        90deg,
        rgba(255,255,255,.92) 0%,
        rgba(210,223,255,.88) 25%,
        rgba(40,57,98,.94) 65%,
        rgba(2,19,59,.97) 100%
    );
    border-bottom:1px solid rgba(255,255,255,.08);
}

/* ======================================== */
/* NAVBAR */
/* ======================================== */

.navbar{
    width:100%;
    height:92px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 45px;
    box-sizing:border-box;
}

/* ======================================== */
/* LEFT */
/* ======================================== */

.navbar-left{
    display:flex;
    align-items:center;
    gap:28px;
}

/* ======================================== */
/* LOGO */
/* ======================================== */

.logo{
    display:flex;
    align-items:center;
    justify-content:center;
}

.logo img{
    width:125px;
    height:auto;
    display:block;
    object-fit:contain;
}

/* ======================================== */
/* FRASES */
/* ======================================== */

.top-message{
    min-width:320px;
    display:flex;
    align-items:center;
}

#rotatingText{
    color:#355c9a;
    font-size:16px;
    font-weight:700;
    letter-spacing:.4px;
    transition:.4s ease;
    opacity:1;
}

/* ======================================== */
/* NAV */
/* ======================================== */

.nav{
    display:flex;
    align-items:center;
    gap:34px;
}

.nav a{
    position:relative;
    text-decoration:none;
    color:#ffffff;
    font-size:16px;
    font-weight:500;
    letter-spacing:.3px;
    transition:.3s ease;
}

.nav a:hover{
    color:#66e27d;
}

.nav a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0%;
    height:2px;
    border-radius:20px;
    background:#66e27d;
    transition:.35s ease;
}

.nav a:hover::after{
    width:100%;
}

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

.hero{
    padding-top:92px;
}

/* ======================================== */
/* RESPONSIVE */
/* ======================================== */

@media(max-width:992px){

    .top-message{
        display:none;
    }

    .navbar{
        padding:0 24px;
    }

    .nav{
        gap:22px;
    }

}

@media(max-width:768px){

    .navbar{
        height:auto;
        padding:18px;
        flex-direction:column;
        gap:18px;
    }

    .nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

    .logo img{
        width:110px;
    }

}

/* Safety mobile navbar override */
@media(max-width:768px){
    .navbar{
        height:80px !important;
        padding:0 18px !important;
        flex-direction:row !important;
        justify-content:space-between;
    }

    .menu-toggle{
        display:block !important;
    }

    .nav{
        display:none !important;
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:#071633;
        flex-direction:column !important;
        padding:18px 20px 22px;
        gap:0;
    }

    .nav.active{
        display:flex !important;
    }
}
