.navbar {
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    background-color: white;
}

.navbar .container {
    justify-content: flex-start;
}

.brand-title {
    font-size: 1.5rem;
    margin: .5rem;
}

.navbar-links {
    width: 90%;
    display: flex;
    justify-content: space-between;
    height: 100%;
}

.navbar-links ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-links li {
    list-style: none;
}

.navbar-links li a {
    display: block;
    text-transform: capitalize;
    text-decoration: none;
    cursor: pointer;
    color: #333;
    padding: 1rem;
}

.toggle-button {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    margin-left: auto;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: black;
    border-radius: 10px;
}

@media (max-width: 1223px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .toggle-button {
        display: flex;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }

    .navbar-links ul li {
        text-align: center;
    }

    .navbar-links ul li a {
        padding: 1rem 1rem;
    }

    .navbar-links.active {
        display: flex;
    }
}

.button-header a {
    display: inline-block !important;
}

.language-link {
    padding: 0 2.5px !important;
}

.brand-title img {
    width: 70px;
    margin: 8px 8px;
}