/* Reset */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "nato sans", "Arial", sans-serif;
}

.nav-bg {
    /*background-color: #d4d4d4;*/
}

.nav-lks {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #7a7a7a;
    margin: 10px;
    text-decoration: none
}
  
.nav-lks li {
    cursor: pointer;
} 

    .btn-active {
        color: #1f2f5c;
        font-weight:700;
    }

li a:hover {
    color: #f2c94c;
    font-weight: 600;
    text-underline-offset:auto
}
     
 