/* latin */
@font-face {
    font-family: 'test';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/lato/v23/S6u9w4BMUTPHh6UVSwiPGQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body {
    padding: 0;
    margin: 0;
}


nav {
    position: relative;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: #ffffff;
    box-shadow: rgb(0 0 0) 1px 0px 1px;
    border-bottom: 0px solid #ffffff;

    z-index: 10;
}

nav .home {
    all: unset;
    display: flex; 
    width: fit-content;
    
    margin: 0;
    padding: 0;

    cursor: pointer;
}

nav .home h1 {
    min-width: unset;
}

nav h1 {
    font-family: 'Lato', sans-serif;
    min-width: 260px;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
}

nav div {
    position: relative;

    display: flex;
    flex-direction: row;
    height: 60px;

    max-width: 1400px;
    margin: auto;
}

nav ul {
    display: flex;
    float: right;
    flex-direction: row;
    list-style-type: none;
    height: 100%;
    margin: 0;
    margin-left: auto;
}

nav a {
    text-decoration: none;
    color: black;
    font-size: 17px;
    font-weight: 700;
    font-family: "test", Arial, Helvetica, sans-serif;
    padding: 5px 15px;
    opacity: 1;
}

nav li {
    display: flex;
    flex-direction: row;
    align-items: center;

    border-right-color: black;
    border-right-width: 1px;

}

nav .active {

    border-bottom: black;
    border-bottom-width: 5px;
    border-bottom-style: solid;

    border-top-color: transparent;
    border-top-width: 5px;
    border-top-style: solid;
}

nav img {
    height: 100%;
    padding-left: 5px;
}