.navbar-global {
    height: 70px;
    background-color: #141e1d;
    display: flex;
    justify-content: space-between;
}

.navbar-container {
    color: #ccd4dd;
    height: 70px;
    width: 100%;
    padding: 0 190px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 5;
    background-color: rgba(20, 30, 29, .75);
}

.navbar-menu {
    position: relative;
    padding: 15px 50px;
    width: 100%;
}

.navbar-menu ul {
    list-style-type: none;
    justify-content: flex-start;
    display: flex;
    gap: 60px;
    margin: 0;
}

.navbar-menu ul .nav-link {
    color: #ccd4dd;
    text-decoration: none;
    text-transform: uppercase;
}

.navbar-menu ul .nav-link.active {
    color: #85b7b0;
    font-weight: 500;
}

.navbar-menu ul .nav-link:hover {
    color: #85b7b0;
}

.logo-container {
    height: 45px;
}

.logo-container img {
    max-height: 100%;
}

.navbar-toggler {
    color: white;
    border: none;
    font-size: 35px;
}

@media (max-width: 1200px) {
    .navbar-container {
        padding: 0 100px;
    }
}

@media (max-width: 991px) {
    .navbar-container {
        padding: 0 50px;
    }

    .navbar-menu {
        position: absolute;
        background-color: rgba(20, 30, 29, .75);
        top: 69px;
        left: 0;
    }

    .navbar-menu ul {
        gap: 20px;
    }
}

.navbar-toggler:focus {
    box-shadow: none;
}
