nav{
    width: 100%;
    height: fit-content;
    padding: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 10001;
}
nav a{
    text-decoration: none;
    width: fit-content;
    height: fit-content;
}
nav a svg{
    height: 40px;
    width:  auto;
}


nav #menu
a.cta_primary_btn {
    text-decoration: none;
    width: fit-content;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: bold;
    background-color: #2f404d;
    color: #eaeaea;
    transition: all .3s cubic-bezier(0.23, 1, 0.320, 1);
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

nav #menu
a.cta_primary_btn:hover {
    background-color: #015e7c;
}

@media (max-width: 500px) {
    nav{
        flex-direction: column;
        gap: 30px;
    }
}