@charset "UTF-8";

/*  Apply to EVERY page on website  */
* {
	font-family: Archivo, Helvetica, "Myriad Pro", Verdana, Arial  !important;
}

/* =========================
GLOBAL
========================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


a { color: inherit; outline: none; text-decoration: none; }
a:visited { color: inherit; }
a:hover { color: #09f; text-decoration: none; }
/**** NAV Menu ***/
.nav-menu-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    background: #fff;
}
/* .site-id
{
	width: 160px;
	height: 35px;
	    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
} */

.site-menu li a {
    text-decoration: none;
    color: #1e2a5a;   /* airblue-ish */
    font-weight: 500;
    font-size: 20px;
    padding: 6px 0;
    position: relative;
	text-transform: capitalize !important;
}
.site-menu li a::after {
	/* text-decoration: none;
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #1e2a5a; */
    /* transition: width 0.25s ease; */
}

.site-menu li a:hover::after {
    width: 100%;
}

