html, body { 
    margin: 0; 
    font-family: 'Poppins', sans-serif;
}

body::-webkit-scrollbar {
    display: none;
}

/* Header Basics */
header {
    height: clamp(80px, 10vh, 100px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    z-index: 1000;
    transition: all 0.4s ease;
}

header.transparent {
    background: transparent;
}

header.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo-img {
    height: 50px;
    width: auto;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

header.transparent nav a {
    color: white;
}

header.scrolled nav a {
    color: #285680;
}

header.scrolled .navtoggle {
    color: #285680;
}

.navlinks a:hover {
    opacity: 0.8;
}

.navlinks>.active{
    font-weight: bold;
}

.navtoggle {
    display: none;
    background-color: transparent;
    color: white;
    border: none;
    font-size: 30px;
    cursor: pointer;
    z-index: 1;
}

/* ----- IF SCREEN SIZE IS SMALL -----*/
    @media (max-width: 820px) { 
        .navlinks {
            display: none;
            flex-direction: column;
            position: fixed;
            right: 0px;
            top: 0;
            height: 100%;
            width: 40vw;
            background-color: #285680;
            padding-top: 120px;
            transition: 0.3s;
            z-index: 3000;
            align-items: center;
        }
        .navlinks a {
            margin: 0;
            color: white;
            margin-top: 30px;
        }
        header.scrolled .navlinks a {
            color: white;
        }
        .navtoggle {
            display: block;
        }
    }
    .navlinks.show{
        display: flex;
         
    }