
.navbar {
    padding-top: 3px;
    padding-bottom: 0px;
    padding-left: 10%;
    padding-right: 10%;
    position: relative;
    width: 100vw;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--nav_color);
    transition: 0.1s ease;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    z-index: 9;
}

.nav_logo img{
    height: 80px;
}

.nav_list {
    list-style: none;
    display: inherit;
    border: 2px black;
    background-color: var(--nav_color);
}

.nav_list li {
    padding: 5px 1px 5px 1px;
    margin: 20px 40px 20px 40px;
    align-content: center;
}

.nav_link {
    text-decoration: none;
    color: black;
    font-size: 18px;
    transition: 0.2s ease 0s;
}

.nav_link:hover {
    border-bottom: 4px solid var(--cta_button);
}

.nav_link:active {
    border-bottom: 6px solid var(--active);;
}

.nav_cta {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    text-shadow: 2px 2px 2px var(--active);
    font-size: 18px;
    background-color: var(--cta_button);
    padding: 8px 25px 8px 25px;
    border-radius: 30px;
    transition: 0.3s ease 0s;
}

.nav_cta svg {
    fill: rgb(255, 255, 255);
    filter: drop-shadow(2px 2px 2px var(--active));
    width: 30px;
    height: 30px;
    margin-right: 3px;
}

.nav_cta:hover {
    box-shadow: 0px 0px 10px 1px var(--active);;
}

.nav_cta:active {
    box-shadow: 0px 0px 10px 5px var(--active);;
}

.hamburger {
    display: none;
    position: fixed;
    right: 5%;
}

.hamburger img{
    height: 50px;
    background-color: var(--nav_color);
    transition: 0.3s ease 0s;
    cursor: pointer;
    padding: 4px 6px 4px 6px;
    border-radius: 35px;
}

.hamburger img:active{
    height: 60px;
}

.nav_cross {
    display: none;
    height: 45px;
}

.nav_cross img {
    height: 45px;
    transition: 0.3s ease 0s;
    cursor: pointer;
}

.nav_cross img:active{
    height: 50px;
}

@media only screen and (max-width: 1200px) {

    .navbar {
        padding-right: 0%;
        padding-left: 2%;
    }

    .nav_list li {
        margin: 20px 30px 20px 30px;
    }
}

@media only screen and (max-width: 900px) {

    .nav_list {
        display: block;
        position: fixed;
        right: -600px;
        top: 0px;
        width: 400px;
        height: 450px;
        transition: 0.3s ease 0s;
        border-radius: 20px;
        z-index: 10;
        box-shadow: -2px 2px 2px rgb(255, 225, 194);
    }

    .nav_list li:not(:first-child) {
        text-align: center;
    }

    .nav_list li:last-child {
        margin-top: 50px;
    }

    .nav_cross {
        display: block;
    }

    .nav_link {
        font-size: 32px;
    }

    .nav_cta {
        font-size: 32px;
        padding: 12px 45px 12px 45px;
    }

    .nav_cta svg {
        width: 40px;
        height: 40px;
        margin-right: 5px;
    }

    .hamburger {
        display: block;
    }
}

@media only screen and (max-width: 530px) {

    .nav_list {
        width: 100vw;
    }
}