* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rajdhani', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

nav {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    width: 100%;
    z-index: 10000;
    height: 60px;
    position: fixed;
    background: #fff;
}

.nav-bar .logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffd04c;
}

.hamburger {
    width: 30px;
    display: none;
    justify-content: center;
}

.hamburger img {
    height: 30px;
}

.nav-call a {
    text-decoration: none;
    color: #fff;
    font-size: large;
}

.nav-list img {
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(125deg) brightness(93%) contrast(115%);
    width: 20px;
    position: absolute;
    display: none;
}

.nav-bar ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-bar ul li {
    margin: 0 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #000;
}

.nav-call {
    background: #1b2839;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

/* Bottom fixed button */
.contactFixed {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 30;
}

.contactFixed a {
    width: 50%;
    text-decoration: none;
}

.contactFixed a button {
    width: 100%;
    outline: none;
    border: none;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
}

.contactFixed .bottomBtnText {
    background-color: #1b2839;
    color: #fff;
}

.contactFixed .bottomBtnCall {
    background-color: #ffd04c;
    color: #1b2839;
}

.contactFixed .bottomBtnText img {
    width: 20px;
    margin-right: 5px;
    filter: invert(100%) sepia(99%) saturate(0%) hue-rotate(203deg) brightness(110%) contrast(101%);
}

.contactFixed .bottomBtnCall img {
    width: 20px;
    filter: invert(11%) sepia(49%) saturate(600%) hue-rotate(174deg) brightness(95%) contrast(91%);
    margin-right: 5px;
}

.nav_links {
    text-decoration: none;
    color: #000;
    font-size: large;
}


@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-list {
        position: fixed;
        height: 100vh;
        z-index: 50;
        width: 50%;
        top: 0;
        right: -50%;
        background: #1b2839;
        transition: all 0.5s ease-in-out;
    }

    .menu-open {
        right: 0;
    }

    .nav-list img {
        display: block;
        right: 20px;
        top: 15px;
    }

    .nav-list ul {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        padding-left: 10%;
        position: absolute;
        top: 60px;
    }

    .nav-list ul li {
        text-align: left;
        margin: 5px;
        color: #ffd04c;
    }

    .nav-call {
        background: unset;
        padding: unset;
        border-radius: unset;
    }

    .nav-call a {
        color: #ffd04c;
    }

    .contactFixed {
        display: flex;
    }

    .nav_links {
        color: #ffd04c;
    }
}